[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-451-lib.cs
blob6eba31f02b049f675509955c74d1eb7c0c73f658
1 // Compiler options: -t:library
3 using System;
5 public class A<T> where T : new ()
7 public T Value = new T ();
9 public class N1 : A<N2>
13 public class N2
15 public int Foo ()
17 return 0;