Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0182-12.cs
blob2827f63c7bd0a71d09fd2c629970cd45e8470e6f
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 18
4 using System;
6 enum E
7 {
8 Value
11 class AAttribute : Attribute
13 public AAttribute (Enum e)
18 [A (E.Value)]
19 class Test