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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
gcs1909.cs
blob
16081307a75910a566d20e79931cbb8e299e8177
1
// gcs1909.cs: The DefaultValue 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
}