1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
6 class TestAttribute
: Attribute
8 public TestAttribute (object o
) {}
13 [Test (new int[][] { null }
)]
14 public static void Main ()
16 System
.Reflection
.MethodBase
.GetCurrentMethod().GetCustomAttributes (true);