[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-etree-28.cs
1 // Compiler options: -warnaserror
2
3 using System;
4 using System.Linq.Expressions;
5
6 class Repro
7 {
8         int i = 2;
9
10         void UseField ()
11         {
12                 TakeExpression (() => Console.Write (i));
13         }
14
15         void TakeExpression (Expression<Action> expr)
16         {
17         }
18
19         public static void Main ()
20         {
21         }
22 }