[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0029-5.cs
blob0099fc7f3cc09a191838375d83b16ad19b76052a
1 // CS0029: Cannot implicitly convert type `T' to `int'
2 // Line: 4
4 class X {
5 static void Main()
7 int a = new T ();
11 struct T {