summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3005-7.cs
blob: f51b55ae11ea1bdaaef232e04ce98de2557d84d4 (plain)
1
2
3
4
5
6
7
8
9
10
// CS3005: Identifier `CLSClass.this[int].set' differing only in case is not CLS-compliant
// Line: 8
// Compiler options: -warnaserror

[assembly:System.CLSCompliant(true)]

public class CLSClass {
        protected int SET_item;
        public int this[int index] { set {} }        
}