[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-debug-17.cs
1 using System;
2 using System.Linq.Expressions;
3
4 class C
5 {
6         public static void Main ()
7         {
8         }
9         
10         void Test_1 ()
11         {
12                 Expression<Func<int, int, int>> e = 
13                         (a, b) =>
14                         a + b;
15                 
16                 return;
17         }
18         
19         void Test_2 ()
20         {
21                 Expression<Func<Expression<Func<int>>>> e = () => () => 2;
22         }
23 }