[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0061.cs
1 // CS0061: Inconsistent accessibility: base interface `IFoo' is less accessible than interface `IBar'
2 // Line: 9
3
4 using System;
5
6 interface IFoo {
7 }
8
9 public interface IBar : IFoo {
10 }
11
12 class ErrorCS0061 {
13         public static void Main () {
14         }
15 }
16