[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-135.cs
1 using System;
2
3 class X
4 {
5         public static void Main ()
6         {
7                 int? a = null;
8                 int b = 3;
9                 long? c = a;
10                 Console.WriteLine (c);
11                 long? d = b;
12                 byte? f = (byte?) d;
13         }
14 }