blob: 854cae0ae984738e13ba4fb9016a6771e44d484b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ 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.
|