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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0540.cs
blob
c415d0239de9d756851ee569dadeccab8d0a885d
1
// CS0540: `B.A.B()': containing type does not implement interface `A'
2
// Line:
3
4
interface
A
{
5
}
6
7
class
B
{
8
void
A
.
B
() {}
9
10
static void
Main
() {}
11
}