Update
[mono.git] /
1 // CS8217: Generic type `Stack' takes 1 type parameters, but specified 2.
2 // Line: 10
3 class Stack<T> {
4 }
5
6 class Test {
7 }
8
9 class T {
10         Stack<Test,Test> a;
11
12         static void Main()
13         {
14         }
15 }