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

class Stack<T>
{ }

class X
{
	Stack stack;
}