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

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

[assembly:System.CLSCompliant(true)]

public class CLSClass {
        protected int Constant = 1;
        protected const bool constant = false;
}