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: 1642edd35bba2064024fdf7913a12f37ad31239d (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0649.cs: Field `X.s' is never assigned to, and will always have its default value null
// Line: 4
class X {
	string s;

	string Value {
		get {
			return s;
		}
	}
}