[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0182-7.cs
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 13
3
4 using System;
5
6 [AttributeUsage (AttributeTargets.All)]
7 public class MineAttribute : Attribute {
8         public MineAttribute (Type [] t)
9         {
10         }
11 }
12
13 [Mine(new Type [(ulong) 3])]
14 public class Foo
15 {
16 }
17
18
19
20
21
22