[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0266-27.cs
1 // CS0266: Cannot implicitly convert type `E?' to `E'. An explicit conversion exists (are you missing a cast?)
2 // Line: 13
3
4 enum E
5 {
6 }
7
8 class C
9 {
10         public static void Main ()
11         {
12                 E e = 0;
13                 E r = e + null;
14         }
15 }