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

public class SampleClass {
        protected const int set_Item = 3;
        public int Item { 
            set {}
        }        
}