Remove superflous call to CalcTabRows
[mono.git] / mcs / errors / cs1501-6.cs
1 // cs1501.cs: No overload for method '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