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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs0693.cs
blob
f6a0be8b8f2c0ebdec263848834fe12a2931079f
1
// CS0693: Type parameter `T' has the same name as the type parameter from outer type `A<T>'
2
// Line: 7
3
// Compiler options: -warnaserror -warn:3
4
5
class
A
<
T
>
6
{
7
interface
I
<
T
>
8
{
9
}
10
}