summaryrefslogtreecommitdiffstats
path: root/tests/ui/expr/if/if-without-block.stderr
blob: 98bde827a72abceae58b44f7e46f80b8d885a922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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