fpc/tests/tbs/tb0213.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

21 lines
227 B
ObjectPascal

{ Old file: tbs0252.pp }
{ typecasting not possible within typed const OK 0.99.13 (PFV) }
type
wnd=procedure;
r=record
w : wnd;
end;
procedure p;
begin
end;
const
r1:r=(
w : wnd(@p);
);
begin
end.