2020-07-14 12:59:59 +00:00
|
|
|
error: unnecessary map of the identity function
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/map_identity.rs:7:47
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
|
LL | let _: Vec<_> = x.iter().map(not_identity).map(|x| return x).collect();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: remove the call to `map`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::map-identity` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::map_identity)]`
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
error: unnecessary map of the identity function
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/map_identity.rs:8:57
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
|
LL | let _: Vec<_> = x.iter().map(std::convert::identity).map(|y| y).collect();
|
|
|
|
| ^^^^^^^^^^^ help: remove the call to `map`
|
|
|
|
|
|
|
|
error: unnecessary map of the identity function
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/map_identity.rs:8:29
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
|
LL | let _: Vec<_> = x.iter().map(std::convert::identity).map(|y| y).collect();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the call to `map`
|
|
|
|
|
|
|
|
error: unnecessary map of the identity function
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/map_identity.rs:9:32
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
|
LL | let _: Option<u8> = Some(3).map(|x| x);
|
|
|
|
| ^^^^^^^^^^^ help: remove the call to `map`
|
|
|
|
|
|
|
|
error: unnecessary map of the identity function
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/map_identity.rs:10:36
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
|
LL | let _: Result<i8, f32> = Ok(-3).map(|x| {
|
|
|
|
| ____________________________________^
|
|
|
|
LL | | return x;
|
|
|
|
LL | | });
|
|
|
|
| |______^ help: remove the call to `map`
|
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
error: unnecessary map of the identity function
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/map_identity.rs:20:36
|
2022-04-07 17:39:59 +00:00
|
|
|
|
|
|
|
|
LL | let _: Result<u32, u32> = Ok(1).map_err(|a| a);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: remove the call to `map_err`
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2020-07-14 12:59:59 +00:00
|
|
|
|