<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0406</ErrorName>
  <Examples>
    <string>// CS0406: The class type constraint `A' must be listed before any other constraints. Consider moving type constraint to the beginning of the constraint list
// Line: 7

class A { }
interface I { }

class Foo&lt;T&gt; where T : I, A
{
}
</string>
    <string>// 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&lt;T&gt;
	where T : A, B
{
}
</string>
  </Examples>
</ErrorDocumentation>