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
2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
errors
/
gcs0412.cs
blob
874a0a6e1f5be0422017c037ba8fbe88a06cece9
1
// CS0412: The type parameter name `T' is the same as `method parameter'
2
// Line: 6
3
4
class
C
5
{
6
public void
Foo
<
T
> (
string
T
)
7
{
8
}
9
}