rust/tests/ui/parser/issues/issue-13483.stderr

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

19 lines
609 B
Plaintext
Raw Normal View History

error: missing condition for `if` expression
2018-12-25 09:56:47 -06:00
--> $DIR/issue-13483.rs:3:14
|
2019-03-09 06:03:44 -06:00
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
2019-12-06 16:23:30 -06:00
--> $DIR/issue-13483.rs:11:14
|
2019-03-09 06:03:44 -06:00
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