summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3005-23.cs
blob: dc018d53d15223da577f4fb21e2636140d95e08f (plain)
1
2
3
4
5
6
7
8
9
10
// CS3005: Identifier `CLSClass.a.get' differing only in case is not CLS-compliant
// Line: 8
// Compiler options: -warnaserror

[assembly:System.CLSCompliant(true)]

public class CLSClass {
        public int get_A () { return 3; }
        public int a { get { return 2; } }
}