fpc/tests/test/tarrconstr8.pp
2020-08-05 21:35:01 +00:00

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.