blob: 1d54a25fecd7a18951425dc50720aaee72d0de11 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS0406: The class type constraint `B' must be listed before any other constraints. Consider moving type constraint to the beginning of the constraint list
// Line: 8
class A { }
class B { }
class Foo<T>
where T : A, B
{
}
|