[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8139.cs
blobcb496616a4585f764a9e3cdd95d6da2e7602016b
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 c, int d) M ()
16 throw null;