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