pascalabcnet/TestSuite/with4.pas

14 lines
170 B
ObjectPascal
Raw Normal View History

2022-12-25 13:38:45 +03:00
 type
TRec = record
b: integer;
end;
begin
var a: array [0..1,0..1] of TRec;
with a[0,0] do
begin
b := 2;
end;
assert(a[0,0].b = 2);
end.