Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0119-2.cs
1 // CS0119: Expression denotes a `type', where a `variable' or `value' was expected
2 // Line: 12
3  
4 public class Foo<T>
5 {
6 }
7  
8 class X
9 {
10         static void Main ()
11         {
12                 Foo<X> = new Foo<X> ();
13         }
14 }