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

21 lines
294 B
ObjectPascal

{ Old file: tbs0253.pp }
{ problem with overloaded procedures and forward OK 0.99.11 (PFV) }
procedure test(w : word);forward;
procedure test(a : string);
begin
Writeln(a);
test(20);
end;
procedure test(w :word);
begin
writeln(w);
end;
begin
test('test');
test(32);
end.