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

cs0649.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70ea62c50c44845f59a3cb5267814a254154b7d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0649.cs: Field `X.s' is never assigned to, and will always have its default value null
// Line: 4
// Compiler options: -warnaserror -warn:4

class X {
	string s;

	string Value {
		get {
			return s;
		}
	}
}