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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0111-22.cs
blob
4c72093bdf81bf491592da5138d784aa992e5350
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
}