| error: redundant else block |
| --> tests/ui/redundant_else.rs:10:10 |
| | |
| LL | } else { |
| | __________^ |
| LL | | |
| LL | | |
| LL | | println!("yet don't pull down your hedge."); |
| LL | | } |
| | |_________^ |
| | |
| = note: `-D clippy::redundant-else` implied by `-D warnings` |
| = help: to override `-D warnings` add `#[allow(clippy::redundant_else)]` |
| help: remove the `else` block and move the contents out |
| | |
| LL ~ } |
| LL + |
| LL + |
| LL + println!("yet don't pull down your hedge."); |
| | |
| |
| error: redundant else block |
| --> tests/ui/redundant_else.rs:19:10 |
| | |
| LL | } else { |
| | __________^ |
| LL | | |
| LL | | |
| LL | | println!("shall rise up with fleas."); |
| LL | | } |
| | |_________^ |
| | |
| help: remove the `else` block and move the contents out |
| | |
| LL ~ } |
| LL + |
| LL + |
| LL + println!("shall rise up with fleas."); |
| | |
| |
| error: redundant else block |
| --> tests/ui/redundant_else.rs:30:10 |
| | |
| LL | } else { |
| | __________^ |
| LL | | |
| LL | | |
| LL | | println!("You may delay, but time will not."); |
| LL | | } |
| | |_________^ |
| | |
| help: remove the `else` block and move the contents out |
| | |
| LL ~ } |
| LL + |
| LL + |
| LL + println!("You may delay, but time will not."); |
| | |
| |
| error: redundant else block |
| --> tests/ui/redundant_else.rs:41:6 |
| | |
| LL | } else { |
| | ______^ |
| LL | | |
| LL | | |
| LL | | println!("A fat kitchen makes a lean will."); |
| LL | | } |
| | |_____^ |
| | |
| help: remove the `else` block and move the contents out |
| | |
| LL ~ } |
| LL + |
| LL + |
| LL + println!("A fat kitchen makes a lean will."); |
| | |
| |
| error: redundant else block |
| --> tests/ui/redundant_else.rs:50:10 |
| | |
| LL | } else { |
| | __________^ |
| LL | | |
| LL | | |
| LL | | 1 |
| LL | | } |
| | |_________^ |
| | |
| help: remove the `else` block and move the contents out |
| | |
| LL ~ } |
| LL + |
| LL + |
| LL + 1 |
| | |
| |
| error: redundant else block |
| --> tests/ui/redundant_else.rs:62:10 |
| | |
| LL | } else { |
| | __________^ |
| LL | | |
| LL | | |
| LL | | 2 |
| LL | | } |
| | |_________^ |
| | |
| help: remove the `else` block and move the contents out |
| | |
| LL ~ } |
| LL + |
| LL + |
| LL + 2 |
| | |
| |
| error: redundant else block |
| --> tests/ui/redundant_else.rs:73:10 |
| | |
| LL | } else { |
| | __________^ |
| LL | | |
| LL | | |
| LL | | 1 |
| LL | | } |
| | |_________^ |
| | |
| help: remove the `else` block and move the contents out |
| | |
| LL ~ } |
| LL + |
| LL + |
| LL + 1 |
| | |
| |
| error: aborting due to 7 previous errors |
| |