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

cs3008-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1908b92380dab0e0dab12aaa5fa17fd0360c4b9 (plain)
1
2
3
4
5
6
7
8
9
// cs3008-8.cs: Identifier `E2.__VALUE' is not CLS-compliant
// Line: 8

using System;
[assembly:CLSCompliant (true)]

public enum E2 {
        __VALUE
}