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

cs1644-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 048c4218c42de72b98f0b731ceeb4a6cc085693a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS1644: Feature `access modifiers on properties' cannot be used because it is not part of the C# 1.0 language specification
// Line: 13
// Compiler options: -langversion:ISO-1

class Class {

	public int Count {

		get {
			return 0;
		}

		protected set {
		}
	}
}