rust/tests/ui/expr/if/if-without-block.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
312 B
Plaintext
Raw Normal View History

error: this `if` expression is missing a block after the condition
--> $DIR/if-without-block.rs:3:5
|
2018-02-28 18:56:07 +00:00
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