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-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1908-3.cs
blob
68b1357d52fbe15e1096b9f19eb7a6ac5dbe76de
1
// gcs1908.cs: The type of the default value should match the type of the parameter
2
// Line:
3
4
class
Test
<
T
>
where T
:
class
{
5
internal void
f
([
System
.
Runtime
.
InteropServices
.
DefaultParameterValue
(
null
)]
T x
)
6
{
7
}
8
}