[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1593-4.cs
1 // CS1593: Delegate `System.Action<int>' does not take `2' arguments
2 // Line: 13
3
4 using System;
5
6 public class Test
7 {
8         public static void Main ()
9         {
10                 Action<int> a = (i) => {};
11
12                 dynamic d = 1;
13                 a (d, true);
14         }
15 }