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

cs0524-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ffb0cb761ab2575fd781a0e04e1bd6bbb8b7f19 (plain)
1
2
3
4
5
6
7
8
9
// cs0524-3.cs: `Interface.E': Interfaces cannot declare classes, structs, interfaces, delegates, enumerations or constants
// Line: 4

interface Interface {
        enum E {
            White,
            Black
        }
}