| error: this let-binding has unit value |
| --> tests/ui/let_unit.rs:11:5 |
| | |
| LL | let _x = println!("x"); |
| | ^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `println!("x");` |
| | |
| = note: `-D clippy::let-unit-value` implied by `-D warnings` |
| = help: to override `-D warnings` add `#[allow(clippy::let_unit_value)]` |
| |
| error: this let-binding has unit value |
| --> tests/ui/let_unit.rs:60:5 |
| | |
| LL | / let _ = v |
| LL | | |
| LL | | .into_iter() |
| LL | | .map(|i| i * 2) |
| ... | |
| LL | | .next() |
| LL | | .unwrap(); |
| | |__________________^ |
| | |
| help: omit the `let` binding |
| | |
| LL ~ v |
| LL + |
| LL + .into_iter() |
| LL + .map(|i| i * 2) |
| LL + .filter(|i| i.is_multiple_of(2)) |
| LL + .map(|_| ()) |
| LL + .next() |
| LL + .unwrap(); |
| | |
| |
| error: this let-binding has unit value |
| --> tests/ui/let_unit.rs:110:5 |
| | |
| LL | / let x = match Some(0) { |
| LL | | |
| LL | | None => f2(1), |
| LL | | Some(0) => f(), |
| LL | | Some(1) => f2(3), |
| LL | | Some(_) => (), |
| LL | | }; |
| | |______^ |
| | |
| help: omit the `let` binding |
| | |
| LL ~ match Some(0) { |
| LL + |
| LL + None => f2(1), |
| LL + Some(0) => f(), |
| LL + Some(1) => f2(3), |
| LL + Some(_) => (), |
| LL + }; |
| | |
| |
| error: this let-binding has unit value |
| --> tests/ui/let_unit.rs:192:9 |
| | |
| LL | let res = returns_unit(); |
| | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| | |
| help: omit the `let` binding and replace variable usages with `()` |
| | |
| LL ~ returns_unit(); |
| LL | |
| LL ~ returns_result(()).unwrap(); |
| LL ~ returns_result(()).unwrap(); |
| | |
| |
| error: aborting due to 4 previous errors |
| |