fpc/bugs/bug0253.pp
1999-05-30 22:43:20 +00:00

19 lines
195 B
ObjectPascal

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.