[mini] Always emit safepoints, except WASM
[mono-project.git] / mcs / errors / cs0181-3.cs
blob6e2f5b6ff00dd33ec67b8ca467b08a2352bc925b
1 // CS0181: Attribute constructor parameter has type `System.Enum', which is not a valid attribute parameter type
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