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
/
cs0019-43.cs
blob
a1b8dbdec88f4d36afd5a49a853bbda56011f675
1
// CS0019: Operator `&&' cannot be applied to operands of type `bool?' and `bool?'
2
// Line: 10
3
using
System
;
4
5
class
X
6
{
7
static void
Main
()
8
{
9
bool
?
a
=
false
,
b
=
false
;
10
Console
.
WriteLine
(
a
&&
b
);
11
}
12
}