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: 353df4a607faa031c7decc7b25238f25ff2e70cc (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0118.cs: `X.s' is a `field' but a `type' was expected
// Line: 6
class X {
	string s;

	s MyProperty {
		get {
			return s;
		}
	}
}