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
/
cs1501-17.cs
blob
ac575643f4cd76dad9414022f969c22a500a8808
1
// CS1501: No overload for method `Foo' takes `0' arguments
2
// Line: 12
3
4
class
C
5
{
6
static void
Foo
(
string
foo
,
params object
[]
moreFoo
)
7
{
8
}
9
10
static void
Main
()
11
{
12
Foo
();
13
}
14
}