mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-09 19:32:13 +00:00
15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
error: this `if` expression is missing a block after the condition
|
|
--> $DIR/if-without-block.rs:3:5
|
|
|
|
|
LL | if 5 == {
|
|
| ^^
|
|
|
|
|
help: this binary operation is possibly unfinished
|
|
--> $DIR/if-without-block.rs:3:8
|
|
|
|
|
LL | if 5 == {
|
|
| ^^^^
|
|
|
|
error: aborting due to previous error
|
|
|