Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0306.cs
1 // gcs0306.cs: The type `char*' may not be used as a type argument
2 // Line: 9
3 // Compiler options: -unsafe
4
5 class F<U> {}
6 unsafe class O {
7         F<char *> f;
8         static void Main () {}
9 }