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-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1739.cs
blob
b58074a391ea39365881bce7319e81ca2556d23f
1
// CS1739: The best overloaded method match for `C.Foo(int, int)' does not contain a parameter named `b'
2
// Line: 12
3
// Compiler options: -langversion:future
4
5
class
C
6
{
7
static void
Foo
(
int
x
,
int
y
)
8
{
9
}
10
11
public static void
Main
()
12
{
13
Foo
(
1
,
b
:
2
);
14
}
15
}