summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0182-4.cs
blob: e68c9c216a56b78f856fc4750bc1b6ffd1c8955e (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 (true is bool)]
class AAttribute : System.Attribute
{
	public AAttribute (bool b)
	{
	}
}