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
tag rc1
[mcs.git]
/
errors
/
gcs0111-7.cs
blob
04831b683e3adbbd08f2b91cd96baca449643552
1
// CS0111: A member `Blah.I.M<X>()' is already defined. Rename this member or use different parameter types
2
// Line : 12
3
4
public interface
I
5
{
6
void
M
<
X
> ();
7
}
8
9
public class
Blah
:
I
10
{
11
void
I
.
M
<
X
> () {}
12
void
I
.
M
<
X
> () {}
13
}
14