mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:28:08 +02:00
17 lines
254 B
ObjectPascal
17 lines
254 B
ObjectPascal
{ Old file: tbs0274.pp }
|
|
{ @(proc) is not allowed OK 0.99.13 (PFV) }
|
|
|
|
type
|
|
proc=procedure(a:longint);
|
|
|
|
procedure prc(a:longint);
|
|
begin
|
|
end;
|
|
|
|
var
|
|
p : proc;
|
|
begin
|
|
p:=@prc;
|
|
p:=@(prc); { should this be allowed ? }
|
|
end.
|