2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3005-22.cs
blob40d0eea603fb55f27bd06fe80cf16efa4618a6d3
1 // CS3005: Identifier `X.Index' differing only in case is not CLS-compliant
2 // Line: 8
3 // Compiler options: -warnaserror
5 [assembly:System.CLSCompliant(true)]
7 public class X {
8 public int index { get { return 0; } }
9 public int Index { set {} }