quote only work on lambda on net_4_0
[mcs.git] / errors / cs0182-2.cs
blob32c931db75ee12c06a65b30470912ee08a67baab
1 // cs0182.cs : 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[,] i) {}
11 public class E
13 [Test (null)]
14 public void Method () {}