ignores
[mcs.git] / errors / cs0182-5.cs
blob90da6724429fda169d12851561822df00149da10
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 4
4 [A (false ? new object () : null)]
5 class AAttribute : System.Attribute
7 public AAttribute (object value)