Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs1729-6.cs
1 // CS1729: The type `System.Runtime.CompilerServices.IndexerNameAttribute' does not contain a constructor that 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