[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-iter-02.cs
1 using System.Collections.Generic;
2
3 class C
4 {
5         private IEnumerator<KeyValuePair<string, object>> Test ()
6         {
7                 yield break;
8         }
9         
10         public static void Main ()
11         {
12         }
13 }