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: f55503d56c048875d22aba8e801daedffee82417 (plain)
1
2
3
4
5
6
7
8
// CS0620: `PropertyClass.this[int]': indexer return type cannot be `void'
// Line: 5

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