rust/tests/ui/else_if_without_else.stderr
2018-10-06 09:43:08 -07:00

22 lines
695 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 | | }
| |_____^ help: add an `else` block here
|
= note: `-D clippy::else-if-without-else` implied by `-D warnings`
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