Wed Oct 17 13:24:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
[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 }