[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0212.cs
1 // CS0212: You can only take the address of unfixed expression inside of a fixed statement initializer
2 // Line: 19
3 // Compiler options: -unsafe
4
5 using System;
6
7 class X
8 {
9         public int x;
10         public X ()
11         {
12                 this.x = 4;
13         }
14
15         public unsafe static void Main ()
16         {
17                 X x = new X ();
18                 int *p = &x.x;
19         }
20 }