[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8148-2.cs
blob1961026d0d2805c20ce251adb882b0d231d81912
1 // CS8148: `B.Foo': must return by reference to match overridden member `A.Foo'
2 // Line: 11
4 public abstract class A
6 public abstract ref int Foo { get; }
9 public class B : A
11 public override long Foo {
12 get {
13 throw null;