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-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0266-2.cs
blob
a5befbe14849e6a2a556c0c47cac3f8a759e271c
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
int
?
b
=
a
?
3
:
4
;
10
}
11
}