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

cs0548-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 477067adb73ddf88030c8d2988973160abd1b011 (plain)
1
2
3
4
5
6
// cs0548.cs: 'this[bool]' : property or indexer must have at least one accessor
// Line: 5

class IndexerClass {
        public int this [bool b] { }
}