<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0698</ErrorName>
  <Examples>
    <string>// CS0698: A generic type cannot derive from `X' because it is an attribute class
// Line: 6

using System;

class Stack&lt;T&gt; : X
{ }

class X : Attribute
{
}
</string>
    <string>// CS0698: A generic type cannot derive from `System.Attribute' because it is an attribute class
// Line: 6

using System;

class Stack&lt;T&gt; : Attribute
{ }

class X
{
	static void Main ()
	{ }
}
</string>
  </Examples>
</ErrorDocumentation>