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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0037-6.cs
blob
6e550a45cbf1c144612b0dd32b43eec47cd78c66
1
// CS0037: 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
}