Removed DeflateStream.UnmanagedRead Read loop. Fixes #19313.
[mono.git] / mcs / errors / cs0182-12.cs
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 18
3
4 using System;
5
6 enum E
7
8         Value
9 }
10
11 class AAttribute : Attribute
12
13         public AAttribute (Enum e)
14         {
15         }
16 }
17
18 [A (E.Value)]
19 class Test
20 {
21 }