[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1961-5.cs
blob921c90e2c476248c4591dffdea4a7d8612e93795
1 // CS1961: The contravariant type parameter `T' must be invariantly valid on `B<T>.C()'
2 // Line: 8
4 interface A<T>
8 interface B<in T>
10 A<T> C();