[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1729-8.cs
blob52994f2e951b3e5de6a5e77c91a8801dd80d7140
1 // CS1729: The type `CS0143Test.A' does not contain a constructor that takes `2' arguments
2 // Line: 13
4 namespace CS0143Test
6 public class A
8 static void Main ()
10 string b="text";
11 int c=2;
13 A a = new A (b, c);