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
/
cs0037-6.cs
blob
4563ed13adf267a19d31c70a8238f1225ecb52f8
1
// cs0037.cs: Cannot convert null to `bool' because it is a value type
2
// Line: 13
3
4
using
System
;
5
6
public sealed class
BoundAttribute
:
System
.
Attribute
7
{
8
public bool
Dec { set { }
get
{ return false; }
}
9
}
10
11
class
C
12
{
13
[
Bound
(
Dec
=
null
)]
14
double
d2
;
15
}