summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0182-5.cs
blob: d6d00efb0321c536bed6fc281191adefe528ef31 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 4

[A (false ? new object () : null)]
class AAttribute : System.Attribute
{
	public AAttribute (object value)
	{
	}
}