Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0699.cs
1 // CS0699: `Test<T>()': A constraint references nonexistent type parameter `U'
2 // Line: 6
3
4 interface I
5 {
6         void Test<T>() where U : class;
7 }