fpc/tests/test/tcpstr2a.pp
paul 42832675d8 merge r13482 from cpstrnew branch by florian:
+ first tests for code page aware strings

git-svn-id: trunk@19081 -
2011-09-17 10:40:45 +00:00

14 lines
177 B
ObjectPascal

{ %fail }
procedure p(const S : RawByteString); overload;
begin
end;
procedure p(const S : UTF8String); overload;
begin
end;
var
s1 : Ansistring;
begin
p(s1);
end.