mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
18 lines
252 B
ObjectPascal
18 lines
252 B
ObjectPascal
type t1r = record
|
|
a, b: Byte;
|
|
end;
|
|
t2r = record
|
|
l1, l2: Array[1..4] Of t1r;
|
|
end;
|
|
|
|
|
|
Var r: t2r;
|
|
counter : byte;
|
|
|
|
begin
|
|
counter:=2;
|
|
|
|
with r.l1[counter] Do
|
|
Inc(a)
|
|
end.
|