[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-exmethod-43.cs
1 public class AdapterType
2 {
3         protected virtual void DoSomething ()
4         {
5         }
6 }
7
8 public static class Extensions
9 {
10         public static void DoSomething (this AdapterType obj)
11         {
12         }
13 }
14
15 public abstract class Dummy : AdapterType
16 {
17         public virtual bool Refresh ()
18         {
19                 AdapterType someObj = null;
20                 someObj.DoSomething ();
21                 return true;
22         }
23
24         public static void Main ()
25         {
26
27         }
28 }