[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0550.cs
1 // CS0550: `PropertyClass.PropertyInterface.Value.set' is an accessor not found in interface member `PropertyInterface.Value'
2 // Line: 13
3
4 interface PropertyInterface {
5         int Value { get; }
6 }
7
8 public class PropertyClass: PropertyInterface {
9         int PropertyInterface.Value { 
10                 get { 
11                         return 0;
12                 } 
13                 set { }
14         }
15 }
16
17