2009-08-30 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-etree-02.cs
blobd2d522e543c871ffa7f94f90dbc30ce82d305a9e
1 using System;
2 using System.Linq.Expressions;
4 class M
6 public static void Foo<T> (Expression<Func<T, T>> x)
10 public static void Main ()
12 Foo<int> ((i) => i);
14 Foo ((int i) => i);
16 Expression<Func<int, int>> func = (i) => i;
17 Foo (func);