[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-debug-17.cs
blob622c75a25778c9b4b9a438d9f420a3d711d911bc
1 using System;
2 using System.Linq.Expressions;
4 class C
6 public static void Main ()
10 void Test_1 ()
12 Expression<Func<int, int, int>> e =
13 (a, b) =>
14 a + b;
16 return;
19 void Test_2 ()
21 Expression<Func<Expression<Func<int>>>> e = () => () => 2;