Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

18 lines
272 B
C#

// CS0121: The call is ambiguous between the following methods or properties: `X.a(int, double)' and `X.a(double, int)'
// Line: 15
class X {
static void a (int i, double d)
{
}
static void a (double d, int i)
{
}
public static void Main ()
{
a (0, 0);
}
}