comparison run/foreach_26.d @ 374:f87ba6507260

added missing meta-data
author thomask
date Thu, 31 Mar 2005 09:01:33 +0000
parents
children
comparison
equal deleted inserted replaced
373:177ce8d13eac 374:f87ba6507260
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 module dstress.run.foreach_26;
6
7 int main(){
8 bool[] bArray;
9 int[] iArray;
10
11 bArray[]=false;
12
13 foreach(int c; iArray){
14 assert(0);
15 }
16
17 return 0;
18 }