[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-553.cs
1 class A
2 {
3         public virtual void Add (object o)
4         {
5         }
6 }
7
8 class B : A
9 {
10         public virtual bool Add (object o)
11         {
12                 return false;
13         }
14         
15         public static void Main () {}
16 }