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

cs0274.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 533307bd8637668f4db56afdd2cc36ab0a674f07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0274.cs: `Error0274.Message': Cannot specify accessibility modifiers for both accessors of the property or indexer
// Line: 7
// Compiler options: -t:library

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

 }