[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1961-28.cs
blob25a0423635c488fe4230b3aea03c99989254d8e0
1 // CS1961: The covariant type parameter `T' must be contravariantly valid on `B<T>.A'
2 // Line: 8
4 interface A<in T>
8 interface B<out T>
10 A<T> A { get; }