[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0307-5.cs
blob6fa38ba3026249d0a83bf07ef6602ab382889c02
1 // CS0307: The property `Test<T,U>.Value' cannot be used with type arguments
2 // Line: 16
4 class Test<T, U>
6 public object Value {
7 get { return null; }
10 public class B
12 public B (object arg)
16 public static B Default = new B (Value<U>.Default);