[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1502-8.cs
1 // CS1502: The best overloaded method match for `C.Test_C(System.Type, params int[])' has some invalid arguments
2 // Line: 10
3
4 using System;
5
6 public class C
7 {
8         public static int Main ()
9         {
10                 return Test_C (typeof (C), null, null);
11         }
12         
13         static int Test_C (Type t, params int[] a)
14         {
15                 return 1;
16         }
17 }