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: 0cde3c76b311636755e6c6d0a5aaf3f588e33450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0274.cs: Accessibility modifiers for both accesors is not allowed
// Line: 7
// Compiler options: -t:library

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

 }