Switch to compiler-tester
[mono.git] /
1 using System;
2
3 public class Foo<T>
4 {
5 }
6
7 class X
8 {
9         static void Main ()
10         {
11                 Console.WriteLine (typeof (Foo<>));
12         }
13 }