repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0693-4.cs
blob
95bcc30d540bce0a2666d7c0c3e3949c31d1659b
1
// CS0693: Type parameter `U' has the same name as the type parameter from outer type `R<U>'
2
// Line: 9
3
// Compiler options: -warnaserror -warn:3
4
5
class
R
<
U
>
6
{
7
class
A
<
T
>
8
{
9
struct
I
<
U
>
10
{
11
}
12
}
13
}