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

cs0102-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48404fe733ebab676b6e091bc437a80034424faf (plain)
1
2
3
4
5
6
7
// cs0102-2.cs: The type `SampleEnum' already contains a definition for `Label'
// Line: 6

public enum SampleEnum {
        Label,
        Label
}