2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0121-7.cs
blob2c88ccb3b0055dc8d8ec0b57b436848b9c32a46a
1 // CS0121: The call is ambiguous between the following methods or properties: `D.Test(string)' and `D.Test(int, string)'
2 // Line: 16
3 // Compiler options: -langversion:future
5 public class D
7 static void Test (string a = "s")
11 static void Test (int i = 9, string a = "b")
15 public static void Main ()
17 Test ();