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
2010-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs0412-3.cs
blob
aa6c8c2f44cfd15cf336f18aea946004c24422e7
1
// CS0412: The type parameter name `T' is the same as `local variable'
2
// Line: 8
3
4
class
C
5
{
6
public void
Foo
<
T
> (
int value
)
7
{
8
int
T
;
9
}
10
}