[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0545.cs
1 // CS0545: `DerivedClass.Value.get': cannot override because `BaseClass.Value' does not have an overridable get accessor
2 // Line: 9
3
4 abstract class BaseClass {
5         protected abstract int Value { set; }
6 }
7
8 class DerivedClass: BaseClass {
9         protected override int Value { get {} set {} }
10 }
11