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

cs0620.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6db0c59a380449bf4eb3076c54ddc8686eadbf6 (plain)
1
2
3
4
5
6
7
// cs0620.cs: Indexers cannot have void type
// Line: 5

class PropertyClass {
        public void this [int i] { set {}
        }
}