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
2009-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0111-11.cs
blob
8df5badbf1389f28fe7924c19e4588a6966274f7
1
// CS0111: A member `Blah.I.M()' is already defined. Rename this member or use different parameter types
2
// Line : 12
3
4
public interface
I
5
{
6
void
M
();
7
}
8
9
public class
Blah
:
I
10
{
11
void
I
.
M
() {}
12
void
I
.
M
() {}
13
}