[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-634.cs
1 public class Test
2 {
3         delegate void D ();
4         static D d;
5         
6         static public void TestFunc ()
7         {
8                 return;
9                 
10                 string testStr;
11
12                 d += delegate ()
13                 {
14                 testStr = "sss";
15                 };
16    }
17
18         public static void Main (string[] args)
19         {
20                 TestFunc ();
21         }
22 }