Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs3005-7.cs
1 // CS3005: Identifier `CLSClass.this[int].set' 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 CLSClass {
8         protected int SET_item;
9         public int this[int index] { set {} }        
10 }