Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1501-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ebda954015bd633a2365fa8a72dfe2174a86fac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1501.cs: No overload for method 'IndexerNameAttribute' takes '4' arguments
// Line: 5

class MainClass {
        [System.Runtime.CompilerServices.IndexerName("A", "", "", "")]
        int this [int index] {
                get {
                        return 0;
                }
        }
    
}