repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0121.cs
blob
db38d1c887378bb2fe023f0473a169505b6772cc
1
// cs0121.cs: 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
}