Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0102-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef4c0d6e4ccc19d248a5b25f7791481066a1c9fb (plain)
1
2
3
4
5
6
7
// cs0102-5.cs: The type `SampleClass' already contains a definition for `Item'
// Line: 6

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