[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-501.cs
1 public class UndoableDictionary<TKey, TValue> : UpdateableCollection<TValue>
2 {
3         public override void TestFunc ()
4         {
5         }
6 }
7
8 public abstract class UpdateableCollection<T>
9 {
10         internal void AddReferences ()
11         {
12         }
13
14         public virtual void TestFunc ()
15         {
16         }
17
18         class X : UndoableDictionary<int, int>
19         {
20         }
21
22 }
23
24 public class C
25 {
26         public static int Main ()
27         {
28                 new UndoableDictionary<string, decimal> ();
29                 return 0;
30         }
31 }