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