[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0534.cs
blob0e41d7ee04d15f4ca298c42ab62144812086cc91
1 // CS0534: `Y' does not implement inherited abstract member `X.myAbstract()'
2 // Line: 5
4 abstract class X {
5 public abstract void myAbstract ();
8 class Y : X {
9 static void Main (){}