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

cs3005-13.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92f8c1e7bfdbde45f531b9e27b33646915bba023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs3005-13.cs: Identifier `CLSEnum.Label' differing only in case is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror

//
// NOTE: This is only an error in MCS - in GMCS, it's just a warning.
//

using System;
[assembly:CLSCompliant (true)]

public enum CLSEnum {
        label,
        Label
}