[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0310-6.cs
blob86694cf4eda42a0c7799e7ca7949ba282c08d053
1 // CS0310: The type `Class1' must have a public parameterless constructor in order to use it as parameter `T' in the generic type or method `Class3<T>'
2 // Line: 18
4 public class Class1
6 public Class1 (int i) { }
9 public class Class2<T>
13 public class Class3<T> where T : new ()
18 class A : Class2<Class3<Class1>>