[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0825-3.cs
1 // CS0825: The contextual keyword `var' may only appear within a local variable declaration
2 // Line: 9
3
4
5 public class Test
6 {
7         const var v = 9;
8 }
9