[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1502-4.cs
blob0238003bbfd88a475366463c25c3f04edab1e802
1 // CS1502: The best overloaded method match for `X.X(int)' has some invalid arguments
2 // Line: 14
4 public class X {
6 public X (int a)
11 class D {
12 static void Main ()
14 X x = new X ("hola");