2019-08-05 02:30:24 -05:00
|
|
|
error: this let-binding has unit value
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/let_unit.rs:12:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _x = println!("x");
|
2019-08-05 02:30:24 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `println!("x");`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::let-unit-value` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2019-08-05 02:30:24 -05:00
|
|
|
error: this let-binding has unit value
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/let_unit.rs:16:9
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _a = ();
|
2019-08-05 02:30:24 -05:00
|
|
|
| ^^^^^^^^^^^^ help: omit the `let` binding: `();`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2019-08-05 02:30:24 -05:00
|
|
|
error: this let-binding has unit value
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/let_unit.rs:51:5
|
2019-08-05 02:30:24 -05:00
|
|
|
|
|
|
|
|
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 14:53:42 -05:00
|
|
|
|
|
2019-08-05 02:30:24 -05:00
|
|
|
help: omit the `let` binding
|
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~ v
|
|
|
|
LL + .into_iter()
|
|
|
|
LL + .map(|i| i * 2)
|
|
|
|
LL + .filter(|i| i % 2 == 0)
|
|
|
|
LL + .map(|_| ())
|
|
|
|
LL + .next()
|
2022-06-16 09:00:32 -05:00
|
|
|
LL + .unwrap();
|
|
|
|
|
|
2019-08-05 02:30:24 -05:00
|
|
|
|
2022-05-05 09:12:52 -05:00
|
|
|
error: this let-binding has unit value
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/let_unit.rs:78:5
|
2022-05-05 09:12:52 -05:00
|
|
|
|
|
|
|
|
LL | let x: () = f(); // Lint.
|
|
|
|
| ^^^^-^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| help: use a wild (`_`) binding: `_`
|
|
|
|
|
|
|
|
error: this let-binding has unit value
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/let_unit.rs:81:5
|
2022-05-05 09:12:52 -05:00
|
|
|
|
|
|
|
|
LL | let x: () = f2(0i32); // Lint.
|
|
|
|
| ^^^^-^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| help: use a wild (`_`) binding: `_`
|
|
|
|
|
|
|
|
error: this let-binding has unit value
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/let_unit.rs:83:5
|
2022-05-05 09:12:52 -05:00
|
|
|
|
|
|
|
|
LL | let _: () = f3(()); // Lint
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `f3(());`
|
|
|
|
|
|
|
|
error: this let-binding has unit value
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/let_unit.rs:84:5
|
2022-05-05 09:12:52 -05:00
|
|
|
|
|
|
|
|
LL | let x: () = f3(()); // Lint
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `f3(());`
|
|
|
|
|
|
|
|
error: this let-binding has unit value
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/let_unit.rs:100:5
|
2022-05-05 09:12:52 -05:00
|
|
|
|
|
|
|
|
LL | let x: () = if true { f() } else { f2(0) }; // Lint
|
|
|
|
| ^^^^-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| help: use a wild (`_`) binding: `_`
|
|
|
|
|
|
|
|
error: this let-binding has unit value
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/let_unit.rs:111:5
|
2022-05-05 09:12:52 -05:00
|
|
|
|
|
|
|
|
LL | / let _: () = 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 + };
|
|
|
|
|
|
|
|
|
|
2022-07-18 02:39:37 -05:00
|
|
|
error: this let-binding has unit value
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/let_unit.rs:158:13
|
2022-07-18 02:39:37 -05:00
|
|
|
|
|
|
|
|
LL | let _: () = z;
|
|
|
|
| ^^^^^^^^^^^^^^ help: omit the `let` binding: `z;`
|
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|