mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 17:49:43 +02:00
11 lines
109 B
ObjectPascal
11 lines
109 B
ObjectPascal
{%FAIL}
|
|
{$mode objfpc}
|
|
|
|
program tarrconstr11;
|
|
|
|
var
|
|
a: array[0..2] of integer;
|
|
begin
|
|
a := [1,2,3,4];
|
|
end.
|