Merge pull request #4967 from kumpera/profiler-arg-cleanup
[mono.git] / mcs / tests / test-decl-expr-04.cs
1 public class C
2 {
3         public static void Main ()
4         {
5                 Test2 (Test (out var x1), x1);
6         }
7
8         static int Test (out int x)
9         {
10                 x = 1;
11                 return 2;
12         }
13
14         static int Test2 (int x, int y)
15         {
16                 return 2;
17         }
18 }