summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/map_identity.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/map_identity.stderr')
-rw-r--r--src/tools/clippy/tests/ui/map_identity.stderr32
1 files changed, 19 insertions, 13 deletions
diff --git a/src/tools/clippy/tests/ui/map_identity.stderr b/src/tools/clippy/tests/ui/map_identity.stderr
index 4ca24b0b0..ea077d66d 100644
--- a/src/tools/clippy/tests/ui/map_identity.stderr
+++ b/src/tools/clippy/tests/ui/map_identity.stderr
@@ -41,31 +41,37 @@ LL | let _: Result<u32, u32> = Ok(1).map_err(|a| a);
| ^^^^^^^^^^^^^^^ help: remove the call to `map_err`
error: unnecessary map of the identity function
- --> $DIR/map_identity.rs:30:21
+ --> $DIR/map_identity.rs:30:22
|
-LL | let _ = x.iter().map(|(x, y)| (x, y));
- | ^^^^^^^^^^^^^^^^^^^^^ help: remove the call to `map`
+LL | let _ = x.clone().map(|(x, y)| (x, y));
+ | ^^^^^^^^^^^^^^^^^^^^^ help: remove the call to `map`
error: unnecessary map of the identity function
- --> $DIR/map_identity.rs:31:21
+ --> $DIR/map_identity.rs:31:22
|
-LL | let _ = x.iter().map(|(x, y)| {
- | _____________________^
+LL | let _ = x.clone().map(|(x, y)| {
+ | ______________________^
LL | | return (x, y);
LL | | });
| |______^ help: remove the call to `map`
error: unnecessary map of the identity function
- --> $DIR/map_identity.rs:34:21
+ --> $DIR/map_identity.rs:34:22
|
-LL | let _ = x.iter().map(|(x, y)| return (x, y));
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the call to `map`
+LL | let _ = x.clone().map(|(x, y)| return (x, y));
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the call to `map`
error: unnecessary map of the identity function
- --> $DIR/map_identity.rs:37:21
+ --> $DIR/map_identity.rs:37:22
|
-LL | let _ = y.iter().map(|(x, y, (z, (w,)))| (x, y, (z, (w,))));
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the call to `map`
+LL | let _ = y.clone().map(|(x, y, (z, (w,)))| (x, y, (z, (w,))));
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the call to `map`
-error: aborting due to 10 previous errors
+error: unnecessary map of the identity function
+ --> $DIR/map_identity.rs:66:30
+ |
+LL | let _ = x.iter().copied().map(|(x, y)| (x, y));
+ | ^^^^^^^^^^^^^^^^^^^^^ help: remove the call to `map`
+
+error: aborting due to 11 previous errors