mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:28:05 +02:00
17 lines
277 B
ObjectPascal
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.
|