[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0145.cs
1 // CS0145: A const field requires a value to be provided
2 // Line: 5
3
4 class Test {
5         const long value;
6 }
7