Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-etree-06.cs
1 using System;
2 using System.Linq.Expressions;
3
4 public class Test
5 {
6         public static int Main()
7         {
8                 Expression<Func<int>> f = (() => Value());
9                 return f.Compile ().Invoke ();
10         }
11
12         private static int Value()
13         {
14                 return 0;
15         }
16 }