rust-clippy/tests/ui/else_if_without_else.stderr
2018-11-27 15:29:23 +01:00

25 lines
710 B
Text

error: if expression with an `else if`, but without a final `else`
--> $DIR/else_if_without_else.rs:51:12
|
51 | } else if bla2() { //~ ERROR else if without else
| ____________^
52 | | println!("else if");
53 | | }
| |_____^
|
= note: `-D clippy::else-if-without-else` implied by `-D warnings`
= help: add an `else` block here
error: if expression with an `else if`, but without a final `else`
--> $DIR/else_if_without_else.rs:59:12
|
59 | } else if bla3() { //~ ERROR else if without else
| ____________^
60 | | println!("else if 2");
61 | | }
| |_____^
|
= help: add an `else` block here
error: aborting due to 2 previous errors