Add some overloads from Alp, and fix some 1.4 signatures
[mono.git] / mcs / errors / cs1501-6.cs
1 // cs1501-6.cs: No overload for method `System.Runtime.CompilerServices.IndexerNameAttribute' takes `4' arguments
2 // Line: 5
3
4 class MainClass {
5         [System.Runtime.CompilerServices.IndexerName("A", "", "", "")]
6         int this [int index] {
7                 get {
8                         return 0;
9                 }
10         }
11     
12 }
13