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

cs0118.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd3afe1a62aedd92b7a9b469c5fc57822b1b220e (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0118.cs: X.s denotes a 'field' where a class was expected
// Line: 6
class X {
	string s;

	s MyProperty {
		get {
			return s;
		}
	}
}