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: 3b325893820855ceed3238f0dc76254321812dfc (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;
    }
}