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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0019-32.cs
blob
4bd8cb528450e1e80d9f1882628b74bf91c69199
1
// CS0019: Operator `&&' cannot be applied to operands of type `bool' and `null'
2
// Line: 14
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
bool
b
=
true
;
9
b
=
b
&&
null
;
10
}
11
}