[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0269.cs
1 // CS0269: Use of unassigned out parameter `a'
2 // Line: 23
3
4 struct A
5 {
6         public int a;
7         public A (int foo)
8         {
9             a = foo;
10         }
11 }
12
13 class X
14 {
15         static void test_output (A a)
16         {
17         }
18         
19         static void test5 (out A a)
20         {
21                 test_output (a);
22                 a = new A (5);
23         }
24 }