13 lines
98 B
C#
Raw Permalink Normal View History

class Stack<T> {
}
class Test {
}
class T {
public static void Main()
{
Stack<Test> a;
}
}