<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0717</ErrorName>
  <Examples>
    <string>// CS0717: `S' is not a valid constraint. Static classes cannot be used as constraints
// Line: 8

static class S
{
}

class Foo&lt;T&gt; where T : S
{
}
</string>
    <string>// CS0717: `System.Console' is not a valid constraint. Static classes cannot be used as constraints
// Line: 6

abstract class C
{
	public abstract void Foo&lt;U&gt; () where U : System.Console;
}
</string>
  </Examples>
</ErrorDocumentation>