Array operators and empty array gives internal compiler error 200305091
Free Pascal Compiler version 3.3.1 [2022/09/15] for aarch64: ```pascal {$mode objfpc} {$modeswitch arrayoperators} program test; var a: array of integer; begin a += []; // error: Internal error 200305091 end. ```
issue