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

cs0273.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cbc31a50c589c688bf6867f4f90711b6c2ea5642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0273.cs: Accessibility modifier must be more restrictive than the property access
// Line: 8
// Compiler options: -t:library

 class Error0273
 {
	 protected internal string Message {
		 public get {
			 return "Hi";
		 }
		 set {
		 }
	 }

 }