[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0420-2.cs
1 // CS0420: `XX.j': A volatile field references will not be treated as volatile
2 // Line: 14
3 // Compiler options: -unsafe /warnaserror /warn:1
4
5 unsafe class XX {
6         static volatile int j;
7
8         static void X (ref int a)
9         {
10         }
11         
12         static void Main ()
13         {
14                 X (ref j);
15         }
16 }