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] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0839-2.cs
blob
54afa8bc9a213e202e06dd16d0d148f65cdb1040
1
// CS0839: An argument is missing
2
// Line: 12
3
4
class
Test
5
{
6
static void
Foo
(
int
a
,
bool
b
)
7
{
8
}
9
10
static void
Main
()
11
{
12
Foo
(,
1
);
13
}
14
}