comparison run/d/dchar_10_B.d @ 1560:36bedfa079e6

D1 -> D2 : 2/N
author thomask
date Sun, 19 Aug 2007 19:15:01 +0000
parents b8c0195059d9
children
comparison
equal deleted inserted replaced
1559:ec5e144583ea 1560:36bedfa079e6
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5835 7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5835
8 8
9 module dstress.run.d.dchar_10_B; 9 module dstress.run.d.dchar_10_B;
10 10
11 int main(){ 11 int main(){
12 dchar[] string = "\uDBC4\uDD11"c; 12 dchar[] x = "\uDBC4\uDD11"c;
13 13
14 assert(string.length == 1); 14 if(1 != x.length){
15 assert(0);
16 }
15 17
16 if(string[0] == 0x101111){ 18 if(x[0] == 0x101111){
17 return 0; 19 return 0;
18 } 20 }
19 } 21 }