2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0698.cs
blobc640be781bf480b202dd8ecd734327a5fb537919
1 // cs0698.cs: 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 { }