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-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs0412-3.cs
blob
709572c39f05735320772e47c62a95332bc7c05e
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
}