[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0165-29.cs
1 // CS0165: Use of unassigned local variable `j'
2 // Line: 10
3
4 class Test
5 {
6         static void Main ()
7         {
8                 int? i;
9                 int? j;
10                 int? x = (i = 7) ?? j;
11     }
12 }