Merge pull request #4845 from lambdageek/dev-coop-delegates
[mono.git] / mcs / errors / cs0121-20.cs
1 // CS0121: The call is ambiguous between the following methods or properties: `Test.Foo(string, params object[])' and `Test.Foo(string, params int[])'
2 // Line: 16
3
4 public class Test
5 {
6         static void Foo (string s, params object[] args)
7         {
8         }
9         
10         static void Foo (string s, params int[] args)
11         {
12         }
13         
14         public static void Main ()
15         {
16                 Foo ("a");
17         }
18 }