mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-10 17:21:42 +01:00
11 lines
91 B
ObjectPascal
11 lines
91 B
ObjectPascal
{ %fail }
|
|
procedure p;local;
|
|
begin
|
|
end;
|
|
|
|
var
|
|
myp : tprocedure;
|
|
begin
|
|
myp:=@p;
|
|
end.
|