[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-070.cs
blobfe575f44b77ae811b729ca565e1270aae95e8b5a
1 namespace Martin
3 public class Test<T>
5 public static int Foo ()
7 return 0;
12 class Foo<T>
14 public Foo (int a)
15 { }
17 public Foo ()
18 : this (Martin.Test<T>.Foo ())
19 { }
22 class X
24 public static void Main ()