blob: 99339a285edeeaa3a3623588aa1f391c7872165b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: this `if` expression is missing a block after the condition
--> $DIR/issue-91421.rs:4:17
|
LL | let value = if true && {
| ^^
|
help: this binary operation is possibly unfinished
--> $DIR/issue-91421.rs:4:20
|
LL | let value = if true && {
| ^^^^^^^
error: aborting due to 1 previous error
|