fpc/tests/webtbs/tw4272.pp
2005-12-20 08:11:59 +00:00

17 lines
277 B
ObjectPascal

procedure go(const w: widestring);overload;
begin
writeln('wide: ',w);
end;
procedure go(const w: shortstring);overload;
begin
writeln('short: ',w);
end;
var
s: ansistring;
begin
s:='test';
go(s); //-->compiler can not determine whitch overloaded function to call
end.