[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1661-2.cs
1 // CS1661: Cannot convert `lambda expression' to delegate type `C.WithOutParam' since there is a parameter mismatch
2 // Line: 10
3
4 class C
5 {
6         delegate void WithOutParam (out string value);
7
8         static void Main() 
9         {
10                 WithOutParam o = (string l) => { return; };
11         }
12 }