(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs3005-23.cs
blob4911f67df5501077f06565b1001be8f2a5915a1b
1 // cs3005.cs: Identifier 'CLSClass.a.get' differing only in case is not CLS-compliant
2 // Line: 8
4 [assembly:System.CLSCompliant(true)]
6 public class CLSClass {
7 public int get_A () { return 3; }
8 public int a { get { return 2; } }