Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0402-2.cs
1 // gcs0402-2.cs: `C.Main<T,U>()': an entry point cannot be generic or in a generic type
2 // Line: 7
3 // Compiler options: -warnaserror -warn:4
4
5 class C
6 {
7     public static void Main<T, U> ()
8     {
9     }
10 }