Merge pull request #819 from brendanzagaeski/patch-1
[mono.git] / mcs / errors / cs1525-55.cs
1 // CS1525: Unexpected symbol `)', expecting `(', `,', `.', or `]'
2 // Line: 8
3
4 namespace CompilerCrashWithAttributes
5 {
6         public class Main
7         {
8                 [MyAttribute1, MyAttribute1)]
9                 public Main ()
10                 {
11                 }
12         }
13
14         public class MyAttribute1 : Attribute
15         {
16         }
17 }