1 2 3 4 5 6 7 8 9 10 11 12 13 14
// CS0118: `Foo<X>' is a `type' but a `variable' was expected // Line: 12 public class Foo<T> { } class X { static void Main () { Foo<X> = new Foo<X> (); } }