[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0120-11.cs
1 // CS0120: An object reference is required to access non-static member `Program.x'
2 // Line: 6
3
4 class Program {
5         int x;
6         const int y = x;
7 }