[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0501-4.cs
1 // CS0501: `X.Mine.get' must have a body because it is not marked abstract, extern, or partial
2 // Line: 6
3
4 class X
5 {
6         public int Mine { get; set {} }
7 }