comparison run/bug_cgcs_353_M.d @ 1559:ec5e144583ea

D1 -> D2 : 1/N
author thomask
date Sun, 19 Aug 2007 19:11:54 +0000
parents e56d6f1cb48e
children
comparison
equal deleted inserted replaced
1558:d40d75fcd5c5 1559:ec5e144583ea
20 a[]=1.0i; 20 a[]=1.0i;
21 b[]=3.0i; 21 b[]=3.0i;
22 22
23 idouble[] arr=concat(); 23 idouble[] arr=concat();
24 24
25 assert(arr.length==2); 25 if(2 != arr.length){
26 assert(arr[0]==1.0i); 26 assert(0);
27 assert(arr[1]==3.0i); 27 }
28 if(1.0i != arr[0]){
29 assert(0);
30 }
31 if(3.0i != arr[1]){
32 assert(0);
33 }
28 34
29 return 0; 35 return 0;
30 } 36 }
31 37