fpc/tests/test/tunistrcopy.pp
paul f8b5920f31 merge r17438 from cpstrnew branch by michael:
* Applied patch from Inoussa to fix copy of unicode string

git-svn-id: trunk@19112 -
2011-09-17 13:27:26 +00:00

10 lines
132 B
ObjectPascal

var
a, b : UnicodeString;
begin
a := '12345';
b := Copy(a,1,Length(a));
if (a <> b) then
Halt(1);
WriteLn('ok');
end.