[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs8139-2.cs
blob93ff00563f7bf83a45ef40f783e764b79cfbaaa2
1 // CS8139: `D.M()': cannot change return type tuple element names when overriding inherited member `C.M()'
2 // Line: 14
4 class C
6 public virtual (int a, int b) M ()
8 throw null;
12 class D : C
14 public override (int, int) M ()
16 throw null;