quote only work on lambda on net_4_0
[mcs.git] / errors / cs0061.cs
blob5f9a364d2f1a30ee557560bea26fadc3757ac4ca
1 // cs0061.cs: 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 () {