mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 17:59:06 +02:00
13 lines
155 B
ObjectPascal
13 lines
155 B
ObjectPascal
type
|
|
proc=procedure(a:longint);
|
|
|
|
procedure prc(a:longint);
|
|
begin
|
|
end;
|
|
|
|
var
|
|
p : proc;
|
|
begin
|
|
p:=@prc;
|
|
p:=@(prc); { should this be allowed ? }
|
|
end. |