2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0182-10.cs
blob1ce2d2f48dfd38231ef9c90ffe96ef088d7c7dbb
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 13
4 using System;
6 class TestAttribute: Attribute
8 public TestAttribute (int[][] o) {}
11 public class E
13 [Test (null)]
14 public static void Main ()
16 System.Reflection.MethodBase.GetCurrentMethod().GetCustomAttributes (true);