comparison run/escape_hex_string_02.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_hex__string_02; 5 module dstress.run.escape_hex__string_02;
6 6
7 int main(){ 7 int main(){
8 char[] string=x" 1 2 8 string x=x" 1 2
9 a 9 a
10 f"; 10 f";
11 assert(string.length==2); 11 assert(x.length==2);
12 assert(string[0]==0x12); 12 assert(x[0]==0x12);
13 assert(string[1]==0xAF); 13 assert(x[1]==0xAF);
14 return 0; 14 return 0;
15 } 15 }