[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0121-7.cs
1 // CS0121: The call is ambiguous between the following methods or properties: `D.Test(string)' and `D.Test(int, string)'
2 // Line: 16
3
4 public class D
5 {
6         static void Test (string a = "s")
7         {
8         }
9
10         static void Test (int i = 9, string a = "b")
11         {
12         }
13
14         public static void Main ()
15         {
16                 Test ();
17         }
18 }