[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0180.cs
blob8e21e95aac5bb28aeee3719916720d3889d90ca3
1 // CS0180: `X.extern_method()' cannot be both extern and abstract
2 // Line:
4 class X {
6 public extern abstract int extern_method ();
8 public static void Main ()