Grammar fix
[mono.git] / mcs / errors / gcs0404.cs
1 // CS0404: '<' unexpected: attributes cannot be generic
2 // Line: 3
3 [Test<T>]
4 class X
5 {
6         static void Main ()
7         { }
8 }