17 lines
184 B
C#
Raw Normal View History

// 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()
{
}
}