[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1706-3.cs
1 // CS1706: Anonymous methods and lambda expressions cannot be used in the current context
2 // Line: 8
3
4 delegate void D ();
5
6 class C
7 {
8         const object c = new D (delegate {});
9 }