repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
resync
[mcs.git]
/
errors
/
cs0061.cs
blob
5f9a364d2f1a30ee557560bea26fadc3757ac4ca
1
// cs0061.cs: 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