mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 03:39:30 +02:00
13 lines
127 B
ObjectPascal
13 lines
127 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tarray17;
|
|
|
|
{$mode delphi}
|
|
|
|
var
|
|
v1: array of array[0..2] of LongInt = [(1, 2, 3), (4, 5, 6)];
|
|
|
|
begin
|
|
|
|
end.
|