[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0404.cs
1 // CS0404: Attributes cannot be generic
2 // Line: 3
3 [Test<T>]
4 class X
5 {
6         static void Main ()
7         { }
8 }