[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0243.cs
1 // CS0243: Conditional not valid on `DerivedClass.Show()' because it is an override method
2 // Line: 10
3
4 class BaseClass {
5         protected virtual void Show () {}
6 }
7
8 class DerivedClass: BaseClass {
9         [System.Diagnostics.Conditional("DEBUG")] protected override void Show () {}
10             
11         static void Main () {}
12 }
13