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

cs0277.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b30cd3f1815b241cb574e0906a22bb855d6054d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0277: Accessor `C.Prop.set' must be declared public to implement interface member `I.Prop.set'
// Line: 10

interface I {
	decimal Prop { set; }
}

class C: I {
	public decimal Prop {
		internal set {}
		get {
			return 0;
		}
	}
}