repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0061-3.cs
blob
66c667913734b47e051b3d09c3aee4defe4cbbad
1
// CS0061: Inconsistent accessibility: base interface `B.IBase' is less accessible than interface `A.IDerived'
2
// Line: 6
3
4
public class
A
5
{
6
protected internal interface
IDerived
:
B
.
IBase
7
{
8
}
9
}
10
11
public class
B
12
{
13
protected internal interface
IBase
14
{
15
}
16
}