14 lines
194 B
C#
14 lines
194 B
C#
|
// 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 ()
|
||
|
{ }
|
||
|
}
|