[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-670.cs
1 // Compiler options: -unsafe
2
3 using System;
4
5 unsafe class C
6 {
7         public static void Main ()
8         {
9                 int x = 5;
10                 int* a = &(*(x + (int*)null));
11                 int* b = &(*(x + (int*)1));
12         }
13 }