"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0121-12.cs
blob27ac11248bc53e9fe81cea6079e0ee6eb0478f47
1 // CS0121: The call is ambiguous between the following methods or properties: `D.Test(bool, string)' and `D.Test(bool, int, string)'
2 // Line: 16
4 public class D
6 static void Test (bool b, string a = "s")
10 static void Test (bool b, int i = 9, string a = "b")
14 public static void Main ()
16 Test (false);