[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0315-4.cs
blobe79d625b641b5bdf2018ce1203b2efda94d1ccce
1 // CS0315: The type `short' cannot be used as type parameter `T' in the generic type or method `A<T>'. There is no boxing conversion from `short' to `A<short>.N1<short>'
2 // Line: 4
4 public class A<T> where T : A<short>.N1<T>
6 public class N1<U>