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

class R<U>
{
	class A<T>
	{
		struct I<T>
		{
		}
	}
}