summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-55.cs
blob: 94621fef2ad018ad08bf96481b2f83d8b133b6a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS1525: Unexpected symbol `)', expecting `(', `,', `.', or `]'
// Line: 8

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

	public class MyAttribute1 : Attribute
	{
	}
}