mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 18:10:29 +02:00
12 lines
150 B
ObjectPascal
12 lines
150 B
ObjectPascal
{ %fail }
|
|
program Project1;
|
|
type
|
|
T1 = array of integer;
|
|
T2 = array of T1;
|
|
T3 = array of T2;
|
|
var
|
|
a: T3;
|
|
begin
|
|
SetLength(a.[0].[0],1);
|
|
end.
|