summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0102.cs
blob: 608a5a911ca3d8b23294c5e1ad18cebf4cb97bd9 (plain)
1
2
3
4
5
6
7
// CS0102: The type `SampleClass' already contains a definition for `set_Item'
// Line: 6

public class SampleClass {
        protected int set_Item;
        public int this[int index] { set {} }        
}