mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
52 lines
1.3 KiB
Text
52 lines
1.3 KiB
Text
error: `if` expression with an `else if`, but without a final `else`
|
|
--> tests/ui/else_if_without_else.rs:51: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`
|
|
--> tests/ui/else_if_without_else.rs:60:12
|
|
|
|
|
LL | } else if bla3() {
|
|
| ____________^
|
|
LL | |
|
|
LL | | println!("else if 2");
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= help: add an `else` block here
|
|
|
|
error: `if` expression with an `else if`, but without a final `else`
|
|
--> tests/ui/else_if_without_else.rs:87:12
|
|
|
|
|
LL | } else if bla5() {
|
|
| ____________^
|
|
LL | |
|
|
LL | | println!("else if 4");
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= help: add an `else` block here
|
|
|
|
error: `if` expression with an `else if`, but without a final `else`
|
|
--> tests/ui/else_if_without_else.rs:117:16
|
|
|
|
|
LL | } else if bla5() {
|
|
| ________________^
|
|
LL | |
|
|
LL | | println!("else if 4");
|
|
LL | | }
|
|
| |_________^
|
|
|
|
|
= help: add an `else` block here
|
|
|
|
error: aborting due to 4 previous errors
|
|
|