New tests, updates
[mono.git] / mono / tests / verifier / valid_access_nested_class_multidym_array.cs
1 using System;
2
3 class MainClass
4 {
5         class Foo {
6
7         }
8
9         public static void Main(string[] args)
10         {
11                 Foo[,] f = new Foo [2,2];
12                 f[0,0] =new Foo ();
13         }
14 }
15
16