fpc/tests/tbf/tbf0172.pp
1999-12-02 17:37:24 +00:00

12 lines
109 B
ObjectPascal

type
rec=record
a : longint;
end;
var
r1 : rec absolute $40:$49;
begin
with r1 do
a:=1;
end.