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
2009-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0839-2.cs
blob
7ee97ea3d7e9c94392db896416032d8c9982cddb
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
}