2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1502-8.cs
blob5be2d15c8f7d7bfbb81ade3d4f2bf85348631fe9
1 // CS1502: The best overloaded method match for `C.Test_C(System.Type, params int[])' has some invalid arguments
2 // Line: 10
4 using System;
6 public class C
8 public static int Main ()
10 return Test_C (typeof (C), null, null);
13 static int Test_C (Type t, params int[] a)
15 return 1;