svn path=/trunk/mcs/; revision=101334
@@ -0,0 +1,16 @@
+using System;
+using System.Linq.Expressions;
+
+public class Test
+{
+ public static int Main()
+ {
+ Expression<Func<int>> f = (() => Value());
+ return f.Compile ().Invoke ();
+ }
+ private static int Value()
+ return 0;
+}
@@ -16,6 +16,7 @@ gtest-etree-01.cs
gtest-etree-03.cs
gtest-etree-04.cs
gtest-etree-05.cs
+gtest-etree-06.cs
gtest-334.cs # Will have to really investigate why is it allowed
@@ -29,6 +29,7 @@ gtest-etree-01.cs
gtest-exmethod-12.cs
ltest-11.cs
test-107.cs