summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0305-2.cs
blob: 2bdeeacda6e3c003325b6dfc2bf93a67d23f3af5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS0305: Using the generic type `Stack<T>' requires `1' type argument(s)
// Line: 11

class Stack<T> {
}

class Test {
}

class T {
	Stack<Test,Test> a;

	static void Main()
	{
	}
}