[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-481.cs
1 using System;
2 public delegate void TestDelegate (out int a);
3
4 public static class TestClass {
5         public static int Main() {
6                 TestDelegate out_delegate = delegate (out int a) {
7                         a = 0;
8                 };
9
10                 int x = 5;
11                 out_delegate (out x);
12                 return x;
13         }
14 }