fpc/bugs/bug0172.pp
1998-10-23 00:02:02 +00:00

12 lines
118 B
ObjectPascal

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