[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0165-32.cs
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 9
3
4 class C
5 {
6         static void Main ()
7         {
8                 int a;
9                 Foo (out a, a);
10         }
11
12         static void Foo (out int a, int b)
13         {
14                 a = b;
15         }
16 }