[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs8139-3.cs
1 // CS8139: `D.M((int, int))': cannot change tuple element names when overriding inherited member `C.M((int, int))'
2 // Line: 13
3
4 class C
5 {
6         public virtual void M ((int, int) arg)
7         {
8         }
9 }
10
11 class D : C
12 {
13         public override void M ((int c, int d) arg)
14         {
15         }
16 }