repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0121-7.cs
blob
00047d73b388110353d98dc18d60a53c0558b21d
1
// CS0121: The call is ambiguous between the following methods or properties: `D.Test(string)' and `D.Test(int, string)'
2
// Line: 16
3
4
public class
D
5
{
6
static void
Test
(
string
a
=
"s"
)
7
{
8
}
9
10
static void
Test
(
int
i
=
9
,
string
a
=
"b"
)
11
{
12
}
13
14
public static void
Main
()
15
{
16
Test
();
17
}
18
}