a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
272 B
C#
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);
|
|
}
|
|
}
|