14 lines
194 B
C#
Raw Normal View History

// CS0698: A generic type cannot derive from `System.Attribute' because it is an attribute class
// Line: 6
using System;
class Stack<T> : Attribute
{ }
class X
{
static void Main ()
{ }
}