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

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

[assembly:System.CLSCompliant(true)]

namespace System {
    public interface Icomparable {
    }
}