Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0308-4.cs
1 // CS0308: The non-generic type `Stack' cannot be used with the type arguments
2 // Line: 9
3
4 class Stack
5 { }
6
7 class X
8 {
9         Stack<float> stack;
10 }