[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0531-2.cs
1 // CS0531: `Interface.P.get': interface members cannot have a definition
2 // Line:
3
4 public interface Interface {        
5         int P { get {} }
6 }