2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0649.cs
blobad4337cc62cb1b06f4fd9e10e7af882ef957b0b8
1 // cs0649.cs: Field `X.s' is never assigned to, and will always have its default value `null'
2 // Line: 4
3 // Compiler options: -warnaserror -warn:4
5 class X {
6 string s;
8 string Value {
9 get {
10 return s;