2020-12-20 16:19:49 +00:00
|
|
|
error: redundant else block
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_else.rs:10:16
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } else {
|
|
|
|
| ________________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-12-20 16:19:49 +00:00
|
|
|
LL | | println!("yet don't pull down your hedge.");
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
|
= help: remove the `else` block and move the contents out
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::redundant-else` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::redundant_else)]`
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
error: redundant else block
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_else.rs:18:16
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } else {
|
|
|
|
| ________________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-12-20 16:19:49 +00:00
|
|
|
LL | | println!("shall rise up with fleas.");
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
|
= help: remove the `else` block and move the contents out
|
|
|
|
|
|
|
|
error: redundant else block
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_else.rs:28:16
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } else {
|
|
|
|
| ________________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-12-20 16:19:49 +00:00
|
|
|
LL | | println!("You may delay, but time will not.");
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
|
= help: remove the `else` block and move the contents out
|
|
|
|
|
|
|
|
error: redundant else block
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_else.rs:38:12
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } else {
|
|
|
|
| ____________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-12-20 16:19:49 +00:00
|
|
|
LL | | println!("A fat kitchen makes a lean will.");
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= help: remove the `else` block and move the contents out
|
|
|
|
|
|
|
|
error: redundant else block
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_else.rs:46:16
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } else {
|
|
|
|
| ________________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-12-20 16:19:49 +00:00
|
|
|
LL | | 1
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
|
= help: remove the `else` block and move the contents out
|
|
|
|
|
|
|
|
error: redundant else block
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_else.rs:57:16
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } else {
|
|
|
|
| ________________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-12-20 16:19:49 +00:00
|
|
|
LL | | 2
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
|
= help: remove the `else` block and move the contents out
|
|
|
|
|
|
|
|
error: redundant else block
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_else.rs:67:16
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } else {
|
|
|
|
| ________________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-12-20 16:19:49 +00:00
|
|
|
LL | | 1
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
|
= help: remove the `else` block and move the contents out
|
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|