]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-13483.stderr
Rollup merge of #106797 - FawazTirmizi:dev/issues/104284, r=bjorn3
[rust.git] / tests / ui / parser / issues / issue-13483.stderr
1 error: missing condition for `if` expression
2   --> $DIR/issue-13483.rs:3:14
3    |
4 LL |     } else if {
5    |              ^- if this block is the condition of the `if` expression, then it must be followed by another block
6    |              |
7    |              expected condition here
8
9 error: missing condition for `if` expression
10   --> $DIR/issue-13483.rs:11:14
11    |
12 LL |     } else if {
13    |              ^- if this block is the condition of the `if` expression, then it must be followed by another block
14    |              |
15    |              expected condition here
16
17 error: aborting due to 2 previous errors
18