comparison run/double_quoted_string_17.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.double_quoted_string_17; 5 module dstress.run.double_quoted_string_17;
6 6
7 int main(){ 7 int main(){
8 char[] a= "a" "b" "c"; 8 string a= "a" "b" "c";
9 char[] b= \x61 "bc"; 9 string b= \x61 "bc";
10 assert(a==b); 10 assert(a==b);
11 return 0; 11 return 0;
12 } 12 }