mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 04:47:57 +02:00
14 lines
113 B
ObjectPascal
14 lines
113 B
ObjectPascal
procedure test;
|
|
|
|
begin
|
|
end;
|
|
|
|
var
|
|
p1 : procedure;
|
|
p2 : pointer;
|
|
|
|
begin
|
|
p1:=@test;
|
|
p2:=@test;
|
|
end.
|