[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0748.cs
1 // CS0748: All lambda parameters must be typed either explicitly or implicitly
2 // Line: 11
3
4
5 public class C
6 {
7         delegate void E ();
8         
9         public static void Main ()
10         {
11                 e = (ref int E, v) => {};
12         }
13 }