fpc/tests/webtbs/tw3328b.pp
Jonas Maebe 35b771e421 * previously, we preferred pchar->shortstring to pchar->ansistring in
case of {$h-}. Now this is no longer done because it caused
    pchar->ansistring and pchar->unicodestring to have the same
    overload preference, which regularly caused problems with the
    added unicodestring overloads in the RTL in the cpstrrtl branch.
  * fixed tw3328.pp (it was missing a {$mode delphi}), which failed
    before this patch but compiles new
  + extra variants of that test for the compiler changes

git-svn-id: trunk@25164 -
2013-07-24 09:39:34 +00:00

28 lines
480 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 3328 }
{ Submitted by "Christian Iversen" on 2004-09-21 }
{ e-mail: chrivers@iversen-net.dk }
program fpcdelphi;
var
err : boolean;
Function A(Const S2: AnsiString): Integer; Overload;
Begin
writeln('ansistring overload');
err:=false;
End;
Function A(Const S2: UnicodeString): Integer; Overload;
Begin
writeln('unicodestring overload');
End;
Var
X : PAnsiChar;
Begin
err:=true;
A(X);
if err then
halt(1);
End.