[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1961-31.cs
blobd9de845de0fa07ad2583b4d6f9bc401879f36bcd
1 // CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>'
2 // Line: 8
4 interface A<T>
8 interface B<out T> : A<T>