fpc/tests/test/twide12.pp
svenbarth f077c7d950 + add support for Unicode code point constants > $FFFF; they are converted to a surrogate pair so they are in
fact a UnicodeString constant
+ added tests

git-svn-id: trunk@39123 -
2018-05-27 14:06:19 +00:00

11 lines
148 B
ObjectPascal

{ %FAIL }
program twide12;
var
s: UnicodeString;
begin
{ this is greater than the highest defined Unicode code point }
s := #&4200000;
end.