summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0693.cs
blob: d2f6a674ab8201665fffb46a44da505755516222 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0693: Type parameter `T' has the same name as the type parameter from outer type `A<T>'
// Line: 7
// Compiler options: -warnaserror -warn:3

class A<T>
{
    interface I<T>
    {
    }
}