Merge pull request #217 from QuickJack/master
[mono.git] / mcs / errors / cs0121-21.cs
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
3
4 class C
5 {
6         C (double[] o, int i = -1, object ii = null)
7         {
8         }
9         
10         C (double[] o, int i = -1, string[] s = null)
11         {
12         }
13         
14         public static void Main ()
15         {
16                 new C (null, 1);
17         }
18 }