ChangeLog entries
[mono.git] / mcs / errors / cs0580.cs
1 // cs0580.cs: Too many unnamed arguments to attribute 'System.Runtime.CompilerServices.IndexerName'\r
2 // Line: 5\r
3 \r
4 class MainClass {\r
5         [System.Runtime.CompilerServices.IndexerName("Index", "", "", "", "")]\r
6         int this [int index] {\r
7                 get {\r
8                         return 0;\r
9                 }\r
10         }\r
11     \r
12         public static void Main () {}\r
13 }\r
14 \r