[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0406-2.cs
1 // CS0406: The class type constraint `A' must be listed before any other constraints. Consider moving type constraint to the beginning of the constraint list
2 // Line: 7
3
4 class A { }
5 interface I { }
6
7 class Foo<T> where T : I, A
8 {
9 }