mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
22 lines
695 B
Text
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
|
|
|