<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0450</ErrorName>
  <Examples>
    <string>// CS0450: `A&lt;bool,int&gt;': cannot specify both a constraint class and the `class' or `struct' constraint
// Line: 8

class A&lt;T, U&gt;
{
}

delegate void Test&lt;T&gt;() where T : struct, A&lt;bool, int&gt;;
</string>
    <string>// CS0450: `A': cannot specify both a constraint class and the `class' or `struct' constraint
// Line: 8

class A
{
}

class B&lt;T&gt; where T : class, A
{
}
</string>
  </Examples>
</ErrorDocumentation>