Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs0649-2.cs
blobd27e1d85033fcfa8c9f52a247f367c05a09515a6
1 // CS0649: Field `C.s' is never assigned to, and will always have its default value `null'
2 // Line: 7
3 // Compiler options: -warnaserror -warn:4
5 class C
7 int? s;
9 void Test ()
11 System.Console.WriteLine (s == null);