<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS3024</ErrorName>
  <Examples>
    <string>// CS3024: Constraint type `I' is not CLS-compliant
// Line: 13
// Compiler options: -warn:1 -warnaserror

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (false)]
public interface I
{
}

public class C&lt;T&gt; where T : I
{
}

</string>
    <string>// CS3024: Constraint type `A' is not CLS-compliant
// Line: 15
// Compiler options: -warn:1 -warnaserror

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (false)]
public abstract class A
{
}

public class C
{
	public static void Foo&lt;T&gt;() where T : A
	{
	}
}

</string>
  </Examples>
</ErrorDocumentation>