[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0103-13.cs
1 // CS0103: The name `value' does not exist in the current context
2 // Line: 8
3 // Compiler options: -langversion:experimental
4
5 class X (double value)
6 {
7         public static double Prop {
8                 get {
9                         return value;
10                 }
11         }
12 }
13