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

cs3005-19.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60f75e62a17efa399ef3b14f4aba21ed45835623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs3005.cs: Identifier 'II.compareto()' differing only in case is not CLS-compliant
// Line: 11
// Compiler options: -t:library

[assembly:System.CLSCompliant(true)]

public interface I {
}

public interface II: I, System.IComparable {
        bool compareto();
}