[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0121-7.cs
blob00047d73b388110353d98dc18d60a53c0558b21d
1 // CS0121: The call is ambiguous between the following methods or properties: `D.Test(string)' and `D.Test(int, string)'
2 // Line: 16
4 public class D
6 static void Test (string a = "s")
10 static void Test (int i = 9, string a = "b")
14 public static void Main ()
16 Test ();