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

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

[assembly:System.CLSCompliant(true)]

public class X {
        public int index { get { return 0; } }
        public int Index { set {} }
        
}