fpc/tests/tbs/tb0218.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

21 lines
285 B
ObjectPascal

{ Old file: tbs0257.pp }
{ problem with procvars in tp mode OK 0.99.11 (PM) }
{$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.