mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
28 lines
748 B
Text
28 lines
748 B
Text
error: `if` expression with an `else if`, but without a final `else`
|
|
--> $DIR/else_if_without_else.rs:45:12
|
|
|
|
|
LL | } else if bla2() {
|
|
| ____________^
|
|
LL | |
|
|
LL | | println!("else if");
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= help: add an `else` block here
|
|
= note: `-D clippy::else-if-without-else` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::else_if_without_else)]`
|
|
|
|
error: `if` expression with an `else if`, but without a final `else`
|
|
--> $DIR/else_if_without_else.rs:54:12
|
|
|
|
|
LL | } else if bla3() {
|
|
| ____________^
|
|
LL | |
|
|
LL | | println!("else if 2");
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= help: add an `else` block here
|
|
|
|
error: aborting due to 2 previous errors
|
|
|