[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0698.cs
1 // CS0698: A generic type cannot derive from `System.Attribute' because it is an attribute class
2 // Line: 6
3
4 using System;
5
6 class Stack<T> : Attribute
7 { }
8
9 class X
10 {
11         static void Main ()
12         { }
13 }