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: ee5a2bde127eb71188e3dc5ed0b38db89a52766b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0273.cs: The accessibility modifier of the `Error0273.Message.get' accessor must be more restrictive than the modifier of the property or indexer `Error0273.Message'
// Line: 8
// Compiler options: -t:library

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

 }