for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0118-15.cs
blob02efe523eeff74764de5bf9609dce761c9623eb9
1 // CS0118: `Foo<X>' is a `type' but a `variable' was expected
2 // Line: 12
4 public class Foo<T>
8 class X
10 static void Main ()
12 Foo<X> = new Foo<X> ();