2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0182-7.cs
blob2eedac001af4a16f863e25de7c07d00e7a339d8e
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 13
4 using System;
6 [AttributeUsage (AttributeTargets.All)]
7 public class MineAttribute : Attribute {
8 public MineAttribute (Type [] t)
13 [Mine(new Type [(ulong) 3])]
14 public class Foo