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
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0693-3.cs
blob
22dff48aa3b35475c46ece40f64b72e3192fe0cb
1
// CS0693: Type parameter `T' has the same name as the type parameter from outer type `C<T>'
2
// Line: 7
3
// Compiler options: -warnaserror -warn:3
4
5
class
C
<
T
>
6
{
7
void
Foo
<
T
> (
T t
)
8
{
9
}
10
}