blob: f5534090f18a4cf19f5b58b5dc1ac9acc5fbc427 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
error: missing condition for `if` expression
--> $DIR/issue-13483.rs:3:14
|
LL | } else if {
| ^- if this block is the condition of the `if` expression, then it must be followed by another block
| |
| expected condition here
error: missing condition for `if` expression
--> $DIR/issue-13483.rs:11:14
|
LL | } else if {
| ^- if this block is the condition of the `if` expression, then it must be followed by another block
| |
| expected condition here
error: aborting due to 2 previous errors
|