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: e6b10fd23c984e55070794ffe0b09af74557ce39 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0442.cs: 'C.Prop.get': abstract properties cannot have private accessors
// Line: 7

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