[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0082-10.cs
1 // CS0082: A member `ISample.set_Item(int, int)' is already reserved
2 // Line: 6
3
4 public interface ISample {
5         int this[int i] { set; }
6         void set_Item (int a, int b);
7 }