ignores
[mcs.git] / errors / cs3005-2.cs
blob009174e071b39c30ba109811efb07c205316f5cd
1 // cs3005-2.cs: Identifier `CLSClass.Index' differing only in case is not CLS-compliant
2 // Line: 14
3 // Compiler options: -warnaserror
5 [assembly:System.CLSCompliant(true)]
7 public class X {
8 public int index { get { return 0; } }
11 public class Y: X {
14 public class CLSClass: Y {
15 public long Index { get { return 3; } }