[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0106-7.cs
1 // CS0106: The modifier `abstract' is not valid for this item
2 // Line: 6
3
4 struct S
5 {
6         public abstract int Prop {
7                 set {}
8         }
9 }