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

cs0720.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d1ee4f248d2884a6dbcfc037507c1eaad91ec23 (plain)
1
2
3
4
5
6
// cs0720.cs: 'StaticClass.this[int]': cannot declare indexers in a static class
// Line: 5

static class StaticClass {
        public int this [int arg] { set {} }
}