Switch to compiler-tester
[mono.git] /
1 class Stack<T> {
2 }
3
4 class Test {
5 }
6
7 class T {
8         public void Foo (Stack<Test> a)
9         { }
10
11         static void Main()
12         {
13         }
14 }