[System.Core] SLE from CoreFX including interpreter
[mono.git] / mcs / tests / gtest-534.cs
1 // Compiler options: -r:gtest-534-lib.dll
2
3 class A : IA
4 {
5         public void Method (IG<double[][]> arg)
6         {
7         }
8         
9         public static int Main ()
10         {
11                 new A ().Method (null);
12                 return 0;
13         }
14 }