[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1686.cs
1 // CS1686: Local variable or parameter `i' cannot have their address taken and be used inside an anonymous method, lambda expression or query expression
2 // Line: 16
3 // Compiler options: -unsafe
4
5 class X {
6         delegate void S ();
7
8         unsafe void M ()
9         {
10                 int i;
11                 int * j ;
12
13                 S s = delegate {
14                         i = 1;
15                 };
16                 j = &i;
17         }
18
19         static void Main () {}
20 }