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
/
cs0539.cs
blob
a79859ce3ecae4fb07e7b27dd5ebffa4e26bbe68
1
// CS0539: `A.B' in explicit interface declaration is not a member of interface
2
// Line:
3
4
interface
A
{
5
}
6
7
class
X
:
A
{
8
void
A
.
B
() {}
9
static void
Main
() {}
10
}