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-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1909.cs
blob
424e076429d36be589180ed6897f826d4d056772
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
}