[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1676-2.cs
1 // CS1676: Parameter `1' must be declared with the `out' keyword
2 // Line: 10
3
4 class C
5 {
6         delegate int D (out int i);
7
8         public static void Main ()
9         {
10                  D d = a => 1;
11         }
12 }