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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1502-18.cs
blob
4e1a0dab4345c1f8f8386ae46a5113ee46594df2
1
// CS1502: The best overloaded method match for `X.Add(params object[])' has some invalid arguments
2
// Line: 8
3
4
class
X
5
{
6
public static void
Main
()
7
{
8
Add
(
Foo
(),
Foo
());
9
}
10
11
public static void
Add
(
params object
[]
args
)
12
{
13
}
14
15
static void
Foo
()
16
{
17
}
18
}