summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0620.cs
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 {}
        }
}