Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0406.cs
1 // CS0406: The class type constraint `B' must be listed before any other constraints. Consider moving type constraint to the beginning of the constraint list
2 // Line: 8
3
4 class A { }
5 class B { }
6
7 class Foo<T>
8         where T : A, B
9 {
10 }