[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-decl-expr-04.cs
blobf30c4feefcb66200f93349a0c2a08fbc6e460162
1 public class C
3 public static void Main ()
5 Test2 (Test (out var x1), x1);
8 static int Test (out int x)
10 x = 1;
11 return 2;
14 static int Test2 (int x, int y)
16 return 2;