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

public class SampleClass {
        protected int Item { set {} }
        public bool Item;
}