Initial revision
[mono.git] / mcs / errors / cs0649.cs
1 // cs0649.cs: Field `X.s' is never assigned to, and will always have its default value null
2 // Line: 4
3 class X {
4         string s;
5
6         string Value {
7                 get {
8                         return s;
9                 }
10         }
11 }