// CS0102: The type `X<T>' already contains a definition for `T'
// Line: 11

class X <T> {
	int T;
}

class W {
	static void Main () {}
}