[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1961-10.cs
blob5a159e0163b04244c4b04e6f3d4eea7b0bc108fa
1 // CS1961: The contravariant type parameter `T' must be invariantly valid on `B<T>()'
2 // Line: 8
4 interface A<T>
8 delegate A<A<T>> B<in T> ();