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

using System;

[BAttribute (null)]
public class BAttribute : Attribute
{
	public BAttribute (Attribute a)
	{
	}
	
	public static void Main ()
	{
	}
}