fpc/bugs/bug0252.pp
1999-05-30 11:57:03 +00:00

19 lines
128 B
ObjectPascal

type
wnd=procedure;
r=record
w : wnd;
end;
procedure p;
begin
end;
const
r1:r=(
w : wnd(@p);
);
begin
end.