[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0573-2.cs
1 // CS0573: 'S': Structs cannot have instance property or field initializers
2 // Line: 6
3
4 struct S
5 {
6         public int Prop { get; set; } = 3;
7 }