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
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1910.cs
blob
384d4ab287a01715e300ff6ccc258e04476e1fe9
1
// CS1910: Argument of type `System.Type' is not applicable for the DefaultParameterValue attribute
2
// Line: 7
3
4
using
System
.
Runtime
.
InteropServices
;
5
6
class
Test
{
7
void
f
([
DefaultParameterValue
(
typeof
(
object
))]
object
x
)
8
{
9
}
10
}