2008-07-17 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs3005-22.cs
1 // cs3005-22.cs: Identifier `X.index' differing only in case is not CLS-compliant
2 // Line: 8
3 // Compiler options: -warnaserror
4
5 [assembly:System.CLSCompliant(true)]
6
7 public class X {
8         public int index { get { return 0; } }
9         public int Index { set {} }
10         
11 }