<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0449</ErrorName>
  <Examples>
    <string>// CS0449: The `class' or `struct' constraint must be the first constraint specified
// Line: 6

public class C&lt;T&gt;
{
      public void Foo&lt;T&gt;() where T : class, struct 
      {
      }
}</string>
    <string>// CS0449: The `class' or `struct' constraint must be the first constraint specified
// Line: 8

public interface I
{
}

public class C&lt;T&gt; where T : I, class
{
}</string>
    <string>// CS0449: The `class' or `struct' constraint must be the first constraint specified
// Line: 6

interface I
{
	void Foo&lt;T&gt; () where T : class, struct;
}
</string>
  </Examples>
</ErrorDocumentation>