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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs1909-2.cs
blob
2b13962902a4aba962073dbcae34a6627f12a47b
1
// CS1909: The DefaultParameterValue attribute is not applicable on parameters of type `System.Type'
2
// Line: 7
3
4
using
System
.
Runtime
.
InteropServices
;
5
6
interface
ITest
{
7
void
f
([
DefaultParameterValue
(
typeof
(
ITest
))]
System
.
Type x
);
8
}