pascalabcnet/TestSuite/formatter_tests/input/setlength1.pas

11 lines
149 B
ObjectPascal
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
type TRec = record
s : string;
end;
var arr : array of TRec;
begin
SetLength(arr,Length(arr)+1);
assert(Length(arr)=1);
assert(arr[0].s='');
end.