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: 6fe70063f4ff86229aa14df3e6e47cc0d3bf0547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// syntax error, got token `PROTECTED', expecting SET CLOSE_BRACE OPEN_BRACKET
// Line: 13
// Compiler options: -langversion:ISO-1

class Class {

	public int Count {

		get {
			return 0;
		}

		protected set {
		}
	}
}