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