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-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0693-2.cs
blob
de7a38f94806825b2f25622c1ec87697f229afdf
1
// CS0693: Type parameter `T' has the same name as the type parameter from outer type `R<U>.A<T>'
2
// Line: 9
3
// Compiler options: -warnaserror -warn:3
4
5
class
R
<
U
>
6
{
7
class
A
<
T
>
8
{
9
struct
I
<
T
>
10
{
11
}
12
}
13
}