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