(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0061.cs
blob6866cc38a33e23647488536cae224082eef3173c
1 // cs0061.cs: Inconsistent accessibility. Base interface less accessible than interface.
2 // Line: 9
4 using System;
6 protected interface IFoo {
9 public interface IBar : IFoo {
12 class ErrorCS0061 {
13 public static void Main () {