rust-clippy/tests/ui/let_unit.stderr

75 lines
1.8 KiB
Text
Raw Normal View History

error: this let-binding has unit value
2024-07-15 08:44:02 +00:00
--> tests/ui/let_unit.rs:13:5
|
2018-12-27 15:57:55 +00:00
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
2024-07-15 08:44:02 +00:00
--> tests/ui/let_unit.rs:61:5
|
LL | / let _ = v
LL | | .into_iter()
LL | | .map(|i| i * 2)
LL | | .filter(|i| i % 2 == 0)
LL | | .map(|_| ())
LL | | .next()
LL | | .unwrap();
| |__________________^
2019-10-26 19:53:42 +00:00
|
help: omit the `let` binding
|
2021-08-11 14:21:33 +00:00
LL ~ v
LL + .into_iter()
LL + .map(|i| i * 2)
LL + .filter(|i| i % 2 == 0)
LL + .map(|_| ())
LL + .next()
2022-06-16 14:00:32 +00:00
LL + .unwrap();
|
error: this let-binding has unit value
2024-07-15 08:44:02 +00:00
--> tests/ui/let_unit.rs:110:5
|
LL | / let x = match Some(0) {
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 + None => f2(1),
LL + Some(0) => f(),
LL + Some(1) => f2(3),
LL + Some(_) => (),
LL + };
|
error: this let-binding has unit value
2024-07-15 08:44:02 +00:00
--> tests/ui/let_unit.rs:191:9
|
LL | let res = returns_unit();
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: omit the `let` binding
|
LL | returns_unit();
|
help: variable `res` of type `()` can be replaced with explicit `()`
|
LL | returns_result(()).unwrap();
| ~~
help: variable `res` of type `()` can be replaced with explicit `()`
|
LL | returns_result(()).unwrap();
| ~~
error: aborting due to 4 previous errors
2018-01-16 16:06:27 +00:00