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-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
dcs0121.cs
blob
968061f7196745774984b1aaaec52dbf8809e9e1
1
// CS0121: The call is ambiguous between the following methods or properties: `X.a(int, dynamic)' and `X.a(double, object)'
2
// Line: 16
3
4
class
X
5
{
6
static void
a
(
int
i
,
dynamic
d
)
7
{
8
}
9
10
static void
a
(
double
d
,
object
i
)
11
{
12
}
13
14
public static void
Main
()
15
{
16
a
(
0
,
0
);
17
}
18
}