fpc/bugs/bug0132.pp
1998-04-21 10:12:42 +00:00

12 lines
92 B
ObjectPascal

type
p=^p;
p2 = ^p2;
var a:p;
a2:p2;
begin
a:=a2;
a:=a2^;
end.