2005-06-05 Ben Maurer <bmaurer@ximian.com>
[mono.git] / mcs / errors / cs0657-5.cs
1 // cs0657.cs : 'assembly' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'field'
2 // Line : 7
3
4 using System;
5
6 public enum E
7 {
8     [assembly: CLSCompliant (false)]
9     item
10 }