Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0693.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6a0be8b8f2c0ebdec263848834fe12a2931079f (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>
    {
    }
}