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