[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0115-5.cs
blobcbf8a0282944139110a48ccd10138d818ee8795b
1 // CS0115: `B.Foo(ref int)' is marked as an override but no suitable method found to override
2 // Line: 13
4 class A
6 public virtual void Foo (out int i)
11 class B : A
13 public override void Foo (ref int i)