[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0649-2.cs
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
4
5 class C
6 {
7         int? s;
8         
9         void Test ()
10         {
11                 System.Console.WriteLine (s == null);
12         }
13 }