fpc/tests/webtbs/tw33875.pp
Jonas Maebe 2c7c0d1144 * handle widechar constants directly in the scanner, instead of in the
overload selection (where you can't even know whether the string is
    a valid widechar constant) (mantis #33875)

git-svn-id: trunk@40009 -
2018-10-21 17:34:00 +00:00

21 lines
253 B
ObjectPascal

{$MODE DELPHI}
program CharOverload;
uses
SysUtils;
procedure Foo(const aArg: UnicodeString); overload;
begin
WriteLn('WideString: ', aArg);
end;
procedure Foo(c: WideChar); overload;
begin
WriteLn('Char: ', c);
end;
begin
Foo('abc');
end.