fpc/tests/tbs/tb0234.pp
2002-09-07 15:40:30 +00:00

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.