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

cs3014-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32e4a2b8f4992ed6dbe3dc82222e5705964607b8 (plain)
1
2
3
4
5
6
7
8
9
// cs3014-8.cs: 'E2.Foo' cannot be marked as CLS compliant because the assembly is not marked as compliant
// Line: 7

using System;

public enum E2 {
        [CLSCompliant (true)]
        Foo
}