[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0406.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 }