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

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

using System;

[CLSCompliant (true)]
public enum E {
}