2022-05-27 23:58:48 -05:00
|
|
|
error: this `if` expression is missing a block after the condition
|
|
|
|
--> $DIR/if-without-block.rs:3:5
|
2018-02-18 18:59:33 -06:00
|
|
|
|
|
2018-02-28 12:56:07 -06:00
|
|
|
LL | if 5 == {
|
2022-05-27 23:58:48 -05:00
|
|
|
| ^^
|
2020-04-22 10:57:40 -05:00
|
|
|
|
|
2022-05-27 23:58:48 -05:00
|
|
|
help: this binary operation is possibly unfinished
|
|
|
|
--> $DIR/if-without-block.rs:3:8
|
2021-12-01 15:36:50 -06:00
|
|
|
|
|
|
|
|
LL | if 5 == {
|
2022-05-27 23:58:48 -05:00
|
|
|
| ^^^^
|
2018-02-18 18:59:33 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|