mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
19 lines
128 B
ObjectPascal
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.
|
|
|