blob: 95bcc30d540bce0a2666d7c0c3e3949c31d1659b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0693: Type parameter `U' has the same name as the type parameter from outer type `R<U>'
// Line: 9
// Compiler options: -warnaserror -warn:3
class R<U>
{
class A<T>
{
struct I<U>
{
}
}
}
|