[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0649.cs
1 // CS0649: Field `X.s' is never assigned to, and will always have its default value `null'
2 // Line: 4
3 // Compiler options: -warnaserror -warn:4
4
5 class X {
6         string s;
7
8         string Value {
9                 get {
10                         return s;
11                 }
12         }
13 }