[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0505.cs
1 // CS0505: `DerivedClass.value()': cannot override because `BaseClass.value' is not a method
2 // Line: 9
3
4 class BaseClass {
5         protected int value;
6 }
7
8 class DerivedClass: BaseClass {
9         protected override int value() {}
10 }
11