[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-199.cs
1 // Compiler options: /unsafe
2
3 // similar code from #75772.
4 public class Splay<T>
5 {
6   unsafe private struct Node
7   {
8     private int* foo;
9     private T                 data;
10   } 
11 }
12
13 class Foo 
14 {
15   public static void Main () {}
16 }
17