comparison run/o/opCat_16_C.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=5027 7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5027
8 8
9 module dstress.run.o.opCat_16_C; 9 module dstress.run.o.opCat_16_C;
10 10
11 int main(){ 11 int main(){
12 char[][] strings; 12 string[] strings;
13 strings.length = 1; 13 strings.length = 1;
14 strings[0] = "Foo"; 14 strings[0] = "Foo";
15 char[] test = "Bar"; 15 string test = "Bar";
16 assert((strings ~ test).length==2); 16 if(2 != (strings ~ test).length){
17 assert((strings ~ test)[0] == "Foo"); 17 assert(0);
18 assert((strings ~ test)[1] == "Bar"); 18 }
19 if("Foo" != (strings ~ test)[0]){
20 assert(0);
21 }
22 if("Bar" != (strings ~ test)[1]){
23 assert(0);
24 }
19 return 0; 25 return 0;
20 } 26 }