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: 835a33f8f80985cad818766ee7a4be46f4aca75b (plain)
1
2
3
4
5
6
7
// cs0524.cs: 'E' : interfaces cannot declare types// Line: 5
interface Interface {
        enum E {
            White,
            Black
        }
}