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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs0111-8.cs
blob
dd2195a63e6707e7255ed32cbbf5903165a4a147
1
// CS0111: A member `C.Foo<U>(G<U>)' is already defined. Rename this member or use different parameter types
2
// Line : 14
3
4
class
G
<
T
>
5
{
6
}
7
8
public class
C
9
{
10
void
Foo
<
T
> (
G
<
T
>
g
)
11
{
12
}
13
14
void
Foo
<
U
> (
G
<
U
>
u
)
15
{
16
}
17
}