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

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

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