blob: 041f32c520077f625aa2824a2ff5e32c4a7a10e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS0061: Inconsistent accessibility: base interface `IFoo' is less accessible than interface `IBar'
// Line: 9
using System;
interface IFoo {
}
public interface IBar : IFoo {
}
class ErrorCS0061 {
public static void Main () {
}
}
|