[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0023-28.cs
blobe9f7942decf12142dff7d4ad79b381e85e8b83b2
1 // CS0023: The `?' operator cannot be applied to operand of type `T'
2 // Line: 13
4 interface IFoo<T>
6 T Call ();
9 class C1
11 U Foo<T, U> (IFoo<T> t)
13 return t?.Call ();