fpc/bugs/bug0257.pp
1999-06-02 22:50:56 +00:00

19 lines
187 B
ObjectPascal

{$mode tp}
type proc = procedure(a : longint);
procedure test(b : longint);
begin
Writeln('Test ',b);
end;
var
t : proc;
begin
t:=test;
t:=proc(test);
test(3);
t(5);
end.