[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0283-3.cs
1 // CS0283: The type `int*' cannot be declared const
2 // Line: 10
3 // Compiler options: -unsafe
4
5 unsafe class Test
6 {
7         const int* o = null;
8 }