Merge pull request #273 from joncham/bug-getpid
[mono.git] / mono / tests / verifier / valid_nested_access_with_multi_array_instance.cs
1 using System;
2
3 public class Foo {
4         public class Nested {
5
6                 class Inner {
7                         
8                 }
9                 
10                 public int Test () {
11                         return Bla<Inner[,]> ();
12                 }
13
14                 static int Bla<T> () { return 0; }
15         }
16 }
17 class Program {
18
19     static int Main (string[] args)
20     {
21                 return new Foo.Nested ().Test ();
22         }
23 }