[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0121-12.cs
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
3
4 public class D
5 {
6         static void Test (bool b, string a = "s")
7         {
8         }
9
10         static void Test (bool b, int i = 9, string a = "b")
11         {
12         }
13
14         public static void Main ()
15         {
16                 Test (false);
17         }
18 }