[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1741.cs
1 // CS1741: Cannot specify a default value for the `ref' parameter
2 // Line: 6
3
4 public class C
5 {
6         public void Test (ref bool a = true)
7         {
8         }
9 }