mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
11 lines
91 B
ObjectPascal
11 lines
91 B
ObjectPascal
{ %fail }
|
|
procedure p;local;
|
|
begin
|
|
end;
|
|
|
|
var
|
|
myp : tprocedure;
|
|
begin
|
|
myp:=@p;
|
|
end.
|