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

cs0442.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78c9ce072324f8a86889e6df7625e9882926ed02 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0442: `C.Prop.get': abstract properties cannot have private accessors
// Line: 7

abstract class C {
    protected abstract int Prop
    {
	private get;
	set;
    }
}