2020-08-28 09:10:16 -05:00
|
|
|
error: you are using an explicit closure for copying elements
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/map_clone.rs:11:22
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _: Vec<i8> = vec![5_i8; 6].iter().map(|x| *x).collect();
|
2020-08-28 09:10:16 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `vec![5_i8; 6].iter().copied()`
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::map-clone` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::map_clone)]`
|
2018-10-02 08:13:43 -05:00
|
|
|
|
2020-08-28 09:10:16 -05:00
|
|
|
error: you are using an explicit closure for cloning elements
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/map_clone.rs:12:26
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _: Vec<String> = vec![String::new()].iter().map(|x| x.clone()).collect();
|
2020-08-28 09:10:16 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `vec![String::new()].iter().cloned()`
|
2018-10-02 08:13:43 -05:00
|
|
|
|
2020-08-28 09:10:16 -05:00
|
|
|
error: you are using an explicit closure for copying elements
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/map_clone.rs:13:23
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _: Vec<u32> = vec![42, 43].iter().map(|&x| x).collect();
|
2020-08-28 09:10:16 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `vec![42, 43].iter().copied()`
|
2019-04-15 16:48:45 -05:00
|
|
|
|
2020-08-28 09:10:16 -05:00
|
|
|
error: you are using an explicit closure for copying elements
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/map_clone.rs:15:26
|
2019-04-15 16:48:45 -05:00
|
|
|
|
|
|
|
|
LL | let _: Option<u64> = Some(&16).map(|b| *b);
|
2020-08-28 09:10:16 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `Some(&16).copied()`
|
2018-10-02 08:13:43 -05:00
|
|
|
|
2020-08-28 09:10:16 -05:00
|
|
|
error: you are using an explicit closure for copying elements
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/map_clone.rs:16:25
|
2019-04-15 16:39:41 -05:00
|
|
|
|
|
2019-04-15 16:48:45 -05:00
|
|
|
LL | let _: Option<u8> = Some(&1).map(|x| x.clone());
|
2020-08-28 09:10:16 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `copied` method: `Some(&1).copied()`
|
2019-04-15 16:39:41 -05:00
|
|
|
|
2020-08-28 09:10:16 -05:00
|
|
|
error: you are needlessly cloning iterator elements
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/map_clone.rs:27:29
|
2019-01-15 00:09:47 -06:00
|
|
|
|
|
|
|
|
LL | let _ = std::env::args().map(|v| v.clone());
|
2020-08-28 09:10:16 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: remove the `map` call
|
2019-01-15 00:09:47 -06:00
|
|
|
|
2019-04-15 16:48:45 -05:00
|
|
|
error: aborting due to 6 previous errors
|
2018-10-02 08:13:43 -05:00
|
|
|
|