[mono-api-html] Prettier output using singular and plural forms in sections
[mono-project.git] / mcs / errors / cs0698.cs
blobebf71ea1e71105b27af5c3539ad2ca6e7fa0578e
1 // CS0698: A generic type cannot derive from `System.Attribute' because it is an attribute class
2 // Line: 6
4 using System;
6 class Stack<T> : Attribute
7 { }
9 class X
11 static void Main ()
12 { }