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
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs1908-4.cs
blob
dc3565426f3922259a540d0a34ea7f35820dc314
1
// CS1908: The type of the default value should match the type of the parameter
2
// Line:
3
4
class
Test
{
5
internal void
f
([
System
.
Runtime
.
InteropServices
.
DefaultParameterValue
((
short
)
1
)]
int
x
)
6
{
7
}
8
}