// CS0305: Using the generic type `Stack<T>' requires `1' type argument(s)
// Line: 9

class Stack<T>
{ }

class X
{
	Stack stack;
}