fpc/tests/webtbs/tw31605.pp
Jonas Maebe 1f9d518c57 * support for non-ASCII widechar constants (mantis #31605)
* also improved type checking for converting constant strings to integers
    in MacPas mode

git-svn-id: trunk@38730 -
2018-04-10 19:24:15 +00:00

31 lines
660 B
ObjectPascal

{$codepage utf-8}
const
engChar: WideChar = 'r'; // OK
rusChar1: WideChar = 'ё'; // Error
rusChar2: WideChar = WideChar('ё'); // Error
eng: array[0..2] of WideChar = ('u', 'R', 'z'); // OK
rus1: array[0..2] of WideChar = ('ё', 'м', 'я'); // Error
rus2: array[0..2] of WideChar = (WideChar('ё'), WideChar('м'), WideChar('я')); // Error
w: unicodestring = 'ёмя';
begin
if rusChar1<>w[1] then
halt(1);
if rus1[0]<>w[1] then
halt(2);
if rus1[1]<>w[2] then
halt(3);
if rus1[2]<>w[3] then
halt(4);
if rus2[0]<>w[1] then
halt(5);
if rus2[1]<>w[2] then
halt(6);
if rus2[2]<>w[3] then
halt(7);
end.