[xbuild] Add new reserved properties $(MSBuildThisFile*).
[mono.git] / mcs / errors / cs0657-4.cs
1 // cs0657-4.cs: `param' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `assembly, module'
2 // Line : 6
3
4 using System;
5
6 [param: CLSCompliant (false)]
7 public enum E
8 {
9     item
10 }