mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
359 B
Plaintext
15 lines
359 B
Plaintext
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 previous error
|
|
|