[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1961-38.cs
blob0f09121a64294e55968a8ce76c844b9d0222d728
1 // CS1961: The covariant type parameter `V' must be invariantly valid on `Both<U,V>(Covariant<None<Contra<V>>>)'
2 // Line: 8
4 delegate T Covariant<out T> ();
5 delegate void Contra<in T> (T t);
6 delegate void None<T> (T t);
8 delegate void Both<in U, out V> (Covariant<None<Contra<V>>> b);