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