[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0452-7.cs
blob264a976898343f405cae894f21712f64d9148050
1 // CS0452: The type `int' must be a reference type in order to use it as type parameter `T' in the generic type or method `C<T>'
2 // Line: 10
4 public class C<T> where T : class
8 delegate void D (C<int> arg);