In ilasm/tests:
[mcs.git] / errors / cs0592-7.cs
blobc618bc29afdf604cf0b6cf2861e2facf6e9eb6e2
1 // cs0592-7.cs: Attribute `EnumAttribute' is not valid on this declaration type. It is valid on `method' declarations only
2 // Line: 13
4 using System;
5 using System.Reflection;
7 [AttributeUsage(AttributeTargets.Method)]
8 public class EnumAttribute : Attribute {}
10 public enum E
12 e_1,
13 [EnumAttribute]
14 e_2