Copied remotely
[mono.git] / mcs / errors / cs3005-22.cs
1 // cs3005.cs: Identifier 'X.Index' differing only in case is not CLS-compliant
2 // Line: 8
3
4 [assembly:System.CLSCompliant(true)]
5
6 public class X {
7         public int index { get { return 0; } }
8         public int Index { set {} }
9         
10 }