[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0506-3.cs
1 // CS0506: `C.Run()': cannot override inherited member `A.Run()' because it is not marked virtual, abstract or override
2 // Line: 7
3 // Compiler options: -r:CS0506-3-lib.dll
4
5 public class C : B
6 {
7         public override void Run ()
8         {
9         }
10 }