for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs8139-4.cs
blob8272a5d47068352710f693da8eab7b7f5e8b69ea
1 // CS8139: `D.Prop': cannot change return type tuple element names when overriding inherited member `C.Prop'
2 // Line: 14
4 class C
6 public virtual (int a, int b) Prop {
7 get {
8 throw null;
13 class D : C
15 public override (int c, int d) Prop {
16 get {
17 throw null;