comparison run/c/char_07_E.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.c.char_07_E; 9 module dstress.run.c.char_07_E;
10 10
11 int main(){ 11 int main(){
12 const char[] string = "\uDBC4\uDD11"; 12 const x = "\uDBC4\uDD11";
13 13
14 static assert(string.length == 4); 14 static assert(x.length == 4);
15 15
16 static if(string[0] == 0xF0 && string[1] == 0x81 && string[2] == 0x84 && string[3] == 0x91){ 16 static if(x[0] == 0xF0 && x[1] == 0x81 && x[2] == 0x84 && x[3] == 0x91){
17 return 0; 17 return 0;
18 } 18 }
19 } 19 }