[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0061.cs
blob041f32c520077f625aa2824a2ff5e32c4a7a10e7
1 // CS0061: Inconsistent accessibility: base interface `IFoo' is less accessible than interface `IBar'
2 // Line: 9
4 using System;
6 interface IFoo {
9 public interface IBar : IFoo {
12 class ErrorCS0061 {
13 public static void Main () {