[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0533.cs
1 // CS0533: `DerivedClass.Foo()' hides inherited abstract member `BaseClass.Foo()'
2 // Line: 9
3
4 abstract public class BaseClass {
5         abstract protected void Foo ();
6 }
7
8 abstract class DerivedClass: BaseClass {
9         public new void Foo () {}
10                 public static void Main () {}
11 }
12