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
/
cs0225.cs
blob
883fbd5a2d12a3aaa1bbe78f48bd5bae4f53eb17
1
// CS0225: The params parameter must be a single dimensional array
2
// Line: 6
3
4
public class
X
5
{
6
public static void
Test
(
params int
a
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
Test
(
1
);
13
}
14
}