1 // CS0121: The call is ambiguous between the following methods or properties: `D.Test(string)' and `D.Test(int, string)'
3 // Compiler options: -langversion:future
7 static void Test (string a
= "s")
11 static void Test (int i
= 9, string a
= "b")
15 public static void Main ()