Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0455-2.cs
1 // CS0455: Type parameter `V' inherits conflicting constraints `B' and `A'
2 // Line: 13
3
4 class A
5 { }
6
7 class B
8 { }
9
10 class Foo<T,U, V>
11         where T : A
12         where U : B
13         where V : U, T
14 {
15 }