[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1066-3.cs
1 // CS1066: The default value specified for optional parameter `x' will never be used
2 // Line: 12
3 // Compiler options: -warnaserror
4
5 interface I
6 {
7         void Method (int i);
8 }
9
10 class C : I
11 {
12         void I.Method (int x = 9)
13         {
14         }
15 }