mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-29 03:09:10 +02:00
14 lines
176 B
ObjectPascal
14 lines
176 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tarrconstr8;
|
|
|
|
type
|
|
TLongIntArray = array of LongInt;
|
|
|
|
var
|
|
arr: TLongIntArray;
|
|
begin
|
|
// Create *must* be used on a type
|
|
arr := arr.Create(1, 2);
|
|
end.
|