summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0102-18.cs
blob: 98bace554efe3195ef1ea67d4e1447cd351a0ee6 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0102: The type `X<T>' already contains a definition for `T'
// Line: 11

class X <T> {
	int T;
}

class W {
	static void Main () {}
}