(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0592-7.cs
blob7b76d0d234626a936b2ab6d7cb1a65659c3b4345
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