[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-365.cs
1 using System;
2
3 namespace B
4 {
5         class Program
6         {
7                 public static int Main()
8                 {
9                         int? i = 0;
10                         bool b = i == (int?)null;
11                         if (b)
12                                 return 1;
13                         
14                         if (i == (int?)null)
15                                 return 2;
16                                 
17                         Console.WriteLine (b);
18                         return 0;
19                 }
20         }
21 }
22