w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0243.cs
blob6e525e3fc5de2fad81dc7c6bc177693736a69161
1 // CS0243: Conditional not valid on `DerivedClass.Show()' because it is an override method
2 // Line: 10
4 class BaseClass {
5 protected virtual void Show () {}
8 class DerivedClass: BaseClass {
9 [System.Diagnostics.Conditional("DEBUG")] protected override void Show () {}
11 static void Main () {}