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

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

using System;
[assembly:CLSCompliant (true)]

public enum A {
}

public interface a {
}