summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0620-2.cs
blob: 5898b6395c4dc8372717a2fddd6b82bdd1545c4d (plain)
1
2
3
4
5
6
// CS0620: `Indexer.this[int]': indexer return type cannot be `void'
// Line: 5

interface Indexer {
        void this [int i] { set; }
}