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