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: 6d75a53372448ab7455ff3e3344d0045508596e3 (plain)
1
2
3
4
5
6
7
// cs0102.cs: The class 'SampleEnum' already contains a definition for 'Label'
// Line: 6

public enum SampleEnum {
        Label,
        Label
}