2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3005-23.cs
blobdc018d53d15223da577f4fb21e2636140d95e08f
1 // CS3005: Identifier `CLSClass.a.get' differing only in case is not CLS-compliant
2 // Line: 8
3 // Compiler options: -warnaserror
5 [assembly:System.CLSCompliant(true)]
7 public class CLSClass {
8 public int get_A () { return 3; }
9 public int a { get { return 2; } }