comparison run/escape_unicode32_01.d @ 1560:36bedfa079e6

D1 -> D2 : 2/N
author thomask
date Sun, 19 Aug 2007 19:15:01 +0000
parents f87ba6507260
children
comparison
equal deleted inserted replaced
1559:ec5e144583ea 1560:36bedfa079e6
3 // $Author$ 3 // $Author$
4 4
5 module dstress.run.escape_unicode32_01; 5 module dstress.run.escape_unicode32_01;
6 6
7 int main(){ 7 int main(){
8 wchar[] string="\U000002AF1"; 8 wstring x="\U000002AF1";
9 assert(string.length==2); 9 assert(x.length==2);
10 assert(string[0]==0x2AF); 10 assert(x[0]==0x2AF);
11 assert(string[1]=='1'); 11 assert(x[1]=='1');
12 return 0; 12 return 0;
13 } 13 }