2 // This test shows that the current way in which we handle blocks
3 // and statements is broken. The b [q,w] code is only executed 10
4 // times instead of a 100
10 static int dob (int [,]b
)
21 // This tests typecasting from an object to an array of ints
22 // and then doing foreach
24 static int count (object o
)
28 foreach (int i
in (int []) o
)
34 public static int Main ()
36 int [,] b
= new int [10,10];
38 for (int q
= 0; q
< 10; q
++)
39 for (int w
= 0; w
< 10; w
++)
45 int [] a
= new int [10];
46 for (int i
= 0; i
< 10; i
++)