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