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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1739-4.cs
blob
ab18a009bebd352dbfcb445795defd5fe9f7a249
1
// CS1739: The best overloaded method match for `Program.M(int, int, int)' does not contain a parameter named `whatever'
2
// Line: 8
3
4
public class
Program
5
{
6
public static void
Main
()
7
{
8
M
(
z
:
1
,
whatever
:
0
);
9
}
10
11
void
M
(
int
x
=
0
,
int
y
=
0
,
int
z
=
0
)
12
{
13
}
14
}