rust/tests/ui/expr/if/if-without-block.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

15 lines
312 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 1 previous error