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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs1909.cs
blob
de241ed3405534ace2093138e1f972558c6d66cc
1
// CS1909: The DefaultParameterValue attribute is not applicable on parameters of type `int[]'
2
// Line: 7
3
4
using
System
.
Runtime
.
InteropServices
;
5
6
class
Test
{
7
void
f
([
DefaultParameterValue
(
new int
[
0
])]
int
[]
x
)
8
{
9
}
10
}