summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3005-22.cs
blob: 40d0eea603fb55f27bd06fe80cf16efa4618a6d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS3005: 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 {} }
        
}