New tests.
[mono.git] / mcs / errors / gcs0693.cs
1 // CS0693: Type parameter `T' has the same name as the type parameter from outer type `A<T>'\r
2 // Line: 7\r
3 // Compiler options: -warnaserror -warn:3\r
4 \r
5 class A<T>\r
6 {\r
7     interface I<T>\r
8     {\r
9     }\r
10 }