<?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>CS0702</ErrorName>
  <Examples>
    <string>// CS0702: A constraint cannot be special class `object'
// Line: 8

using System;

class Foo&lt;T&gt;
	where T : object
{
}
</string>
    <string>// CS0702: A constraint cannot be special class `System.MulticastDelegate'
// Line: 6

using System;

class C&lt;T&gt; where T : MulticastDelegate
{
}
</string>
    <string>// CS0702: A constraint cannot be special class `System.Array'
// Line: 8

using System;

class Foo&lt;T&gt;
	where T : Array
{
}
</string>
  </Examples>
</ErrorDocumentation>