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