Fix conflict

This commit is contained in:
maekawatoshiki 2024-03-14 12:40:33 +09:00
parent 560a5a8cd1
commit c5d3b62cfc
No known key found for this signature in database
GPG Key ID: 60C1B38C916CAA07

View File

@ -1,5 +1,5 @@
error: you are using an explicit closure for copying elements error: you are using an explicit closure for copying elements
--> tests/ui/map_clone.rs:13:22 --> tests/ui/map_clone.rs:14:22
| |
LL | let _: Vec<i8> = vec![5_i8; 6].iter().map(|x| *x).collect(); LL | let _: Vec<i8> = vec![5_i8; 6].iter().map(|x| *x).collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `vec![5_i8; 6].iter().copied()` | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `vec![5_i8; 6].iter().copied()`
@ -8,85 +8,85 @@ LL | let _: Vec<i8> = vec![5_i8; 6].iter().map(|x| *x).collect();
= help: to override `-D warnings` add `#[allow(clippy::map_clone)]` = help: to override `-D warnings` add `#[allow(clippy::map_clone)]`
error: you are using an explicit closure for cloning elements error: you are using an explicit closure for cloning elements
--> tests/ui/map_clone.rs:14:26 --> tests/ui/map_clone.rs:15:26
| |
LL | let _: Vec<String> = vec![String::new()].iter().map(|x| x.clone()).collect(); LL | let _: Vec<String> = vec![String::new()].iter().map(|x| x.clone()).collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `vec![String::new()].iter().cloned()` | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `vec![String::new()].iter().cloned()`
error: you are using an explicit closure for copying elements error: you are using an explicit closure for copying elements
--> tests/ui/map_clone.rs:15:23 --> tests/ui/map_clone.rs:16:23
| |
LL | let _: Vec<u32> = vec![42, 43].iter().map(|&x| x).collect(); LL | let _: Vec<u32> = vec![42, 43].iter().map(|&x| x).collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `vec![42, 43].iter().copied()` | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `vec![42, 43].iter().copied()`
error: you are using an explicit closure for copying elements error: you are using an explicit closure for copying elements
--> tests/ui/map_clone.rs:17:26 --> tests/ui/map_clone.rs:18:26
| |
LL | let _: Option<u64> = Some(&16).map(|b| *b); LL | let _: Option<u64> = Some(&16).map(|b| *b);
| ^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `Some(&16).copied()` | ^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `Some(&16).copied()`
error: you are using an explicit closure for copying elements error: you are using an explicit closure for copying elements
--> tests/ui/map_clone.rs:18:25 --> tests/ui/map_clone.rs:19:25
| |
LL | let _: Option<u8> = Some(&1).map(|x| x.clone()); LL | let _: Option<u8> = Some(&1).map(|x| x.clone());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `Some(&1).copied()` | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `Some(&1).copied()`
error: you are needlessly cloning iterator elements error: you are needlessly cloning iterator elements
--> tests/ui/map_clone.rs:29:29 --> tests/ui/map_clone.rs:30:29
| |
LL | let _ = std::env::args().map(|v| v.clone()); LL | let _ = std::env::args().map(|v| v.clone());
| ^^^^^^^^^^^^^^^^^^^ help: remove the `map` call | ^^^^^^^^^^^^^^^^^^^ help: remove the `map` call
error: you are explicitly cloning with `.map()` error: you are explicitly cloning with `.map()`
--> tests/ui/map_clone.rs:68:13 --> tests/ui/map_clone.rs:69:13
| |
LL | let y = x.map(|x| String::clone(x)); LL | let y = x.map(|x| String::clone(x));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `x.cloned()` | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `x.cloned()`
error: you are explicitly cloning with `.map()` error: you are explicitly cloning with `.map()`
--> tests/ui/map_clone.rs:70:13 --> tests/ui/map_clone.rs:71:13
| |
LL | let y = x.map(Clone::clone); LL | let y = x.map(Clone::clone);
| ^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `x.cloned()` | ^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `x.cloned()`
error: you are explicitly cloning with `.map()` error: you are explicitly cloning with `.map()`
--> tests/ui/map_clone.rs:73:13 --> tests/ui/map_clone.rs:74:13
| |
LL | let y = x.map(String::clone); LL | let y = x.map(String::clone);
| ^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `x.cloned()` | ^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `x.cloned()`
error: you are explicitly cloning with `.map()` error: you are explicitly cloning with `.map()`
--> tests/ui/map_clone.rs:79:13 --> tests/ui/map_clone.rs:80:13
| |
LL | let y = x.map(|x| u32::clone(x)); LL | let y = x.map(|x| u32::clone(x));
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `x.copied()` | ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `x.copied()`
error: you are explicitly cloning with `.map()` error: you are explicitly cloning with `.map()`
--> tests/ui/map_clone.rs:82:13 --> tests/ui/map_clone.rs:83:13
| |
LL | let y = x.map(|x| Clone::clone(x)); LL | let y = x.map(|x| Clone::clone(x));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `x.copied()` | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `x.copied()`
error: you are explicitly cloning with `.map()` error: you are explicitly cloning with `.map()`
--> tests/ui/map_clone.rs:94:13 --> tests/ui/map_clone.rs:95:13
| |
LL | let y = x.map(|x| String::clone(x)); LL | let y = x.map(|x| String::clone(x));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `x.cloned()` | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `x.cloned()`
error: you are explicitly cloning with `.map()` error: you are explicitly cloning with `.map()`
--> tests/ui/map_clone.rs:97:13 --> tests/ui/map_clone.rs:98:13
| |
LL | let y = x.map(|x| Clone::clone(x)); LL | let y = x.map(|x| Clone::clone(x));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `x.cloned()` | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `x.cloned()`
error: you are explicitly cloning with `.map()` error: you are explicitly cloning with `.map()`
--> tests/ui/map_clone.rs:103:13 --> tests/ui/map_clone.rs:104:13
| |
LL | let y = x.map(|x| u32::clone(x)); LL | let y = x.map(|x| u32::clone(x));
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `x.copied()` | ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `x.copied()`
error: you are explicitly cloning with `.map()` error: you are explicitly cloning with `.map()`
--> tests/ui/map_clone.rs:106:13 --> tests/ui/map_clone.rs:107:13
| |
LL | let y = x.map(|x| Clone::clone(x)); LL | let y = x.map(|x| Clone::clone(x));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `x.copied()` | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `x.copied()`