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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1501-4.cs
blob
f16382af384dfbec553cab61a194b8878f8ee0f8
1
// CS1501: No overload for method `Foo' takes `3' arguments
2
// Line: 12
3
4
class
Test
5
{
6
public static void
Foo
(
string
s
=
null
,
int value
=
2
)
7
{
8
}
9
10
static void
Main
()
11
{
12
Foo
(
"a"
,
2
,
6
);
13
}
14
}