[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0693-4.cs
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 }