summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0658-4.cs
blob: 5073abc227c1c0411f04237c26c6e113faaebbd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// CS0658: `)' is invalid attribute target. All attributes in this attribute section will be ignored
// Line : 9
// Compiler options: -warnaserror -warn:1

namespace CompilerCrashWithAttributes
{
	public class Main
	{
		[MyAttribute1, MyAttribute1)]
		public Main ()
		{
		}
	}

	public class MyAttribute1 : Attribute
	{
	}
}