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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs0266-22.cs
blob
7e979e2cc81a2dcde7de385f00ec431309802c27
1
// CS0266: Cannot implicitly convert type `bool?' to `bool'. An explicit conversion exists (are you missing a cast?)
2
// Line: 9
3
4
class
X
5
{
6
static void
Main
()
7
{
8
bool
?
a
=
true
;
9
bool
b
=
a
&
a
;
10
}
11
}