[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs8139-3.cs
blob247a0d1c30290930910fd73e47ae6460f0c65335
1 // CS8139: `D.M((int, int))': cannot change tuple element names when overriding inherited member `C.M((int, int))'
2 // Line: 13
4 class C
6 public virtual void M ((int, int) arg)
11 class D : C
13 public override void M ((int c, int d) arg)