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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs0111-2.cs
blob
f0ed5ceb1f20fbe0d0f1dd1235ce00d9a9a41911
1
// CS0111: A member `Blah.I.M<U>(int)' is already defined. Rename this member or use different parameter types
2
// Line : 12
3
4
public interface
I
5
{
6
void
M
<
T
> (
int
i
);
7
}
8
9
public class
Blah
:
I
10
{
11
void
I
.
M
<
T
> (
int
i
) {}
12
void
I
.
M
<
U
> (
int
i
) {}
13
}