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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
gcs1910-2.cs
blob
b858261f12702b3331b0c06b54011eaf2b54cfd2
1
// CS1910: Argument of type `int[]' is not applicable for the DefaultParameterValue attribute
2
// Line: 7
3
4
using
System
.
Runtime
.
InteropServices
;
5
using
System
;
6
7
class
Test
{
8
void
f
([
DefaultParameterValue
(
new int
[
0
])]
object
x
)
9
{
10
}
11
}