Fix up to do double-dimension array access too !
[mono.git] / mcs / tests / test-45.cs
index 9baa5c2efc6b4f65c8d7edc345c7da4c4fbd596e..a6487ad9b167d48c854896387f938927aace89d1 100644 (file)
@@ -10,11 +10,10 @@ public class Blah {
 
                if (i [2] != 2)
                        return 1;
-
-               // The following doesn't work as of now. Is it supposed to ?
-               //if (j [1,2] != 3)
-               //      return 1;
-
+               
+               if (j [1,1] != 3)
+                       return 1;
+               
                Console.WriteLine ("Array initialization test okay.");
                                   
                return 0;