mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 10:48:30 +02:00
8 lines
108 B
ObjectPascal
8 lines
108 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
program crash1;
|
|
procedure a(b: array of const); begin end;
|
|
begin
|
|
a([0..1]);
|
|
end.
|