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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0535-6.cs
blob
dd3b09f893ca8eb890ea0371d797bff6406b4796
1
// CS0535: `CA' does not implement interface member `IA.M()'
2
// Line: 14
3
4
interface
IA
5
{
6
void
M
();
7
}
8
9
interface
IB
10
{
11
void
M
();
12
}
13
14
class
CA
:
IA
,
IB
15
{
16
void
IB
.
M
()
17
{
18
}
19
}