[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0121-21.cs
blob04a89920360d6c9c7284f2f699979101bd8499c7
1 // CS0121: The call is ambiguous between the following methods or properties: `C.C(double[], int, object)' and `C.C(double[], int, string[])'
2 // Line: 16
4 class C
6 C (double[] o, int i = -1, object ii = null)
10 C (double[] o, int i = -1, string[] s = null)
14 public static void Main ()
16 new C (null, 1);