[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0225.cs
1 // CS0225: The params parameter must be a single dimensional array
2 // Line: 6
3
4 public class X
5 {
6         public static void Test (params int a)
7         {
8         }
9
10         public static void Main()
11         {
12                 Test (1);
13         }
14 }