mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
23 lines
1 KiB
Text
23 lines
1 KiB
Text
|
error: You are using an explicit closure for cloning elements
|
||
|
--> $DIR/map_clone.rs:6:22
|
||
|
|
|
||
|
6 | let _: Vec<i8> = vec![5_i8; 6].iter().map(|x| *x).collect();
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `cloned` method: `vec![5_i8; 6].iter().cloned()`
|
||
|
|
|
||
|
= note: `-D clippy::map-clone` implied by `-D warnings`
|
||
|
|
||
|
error: You are using an explicit closure for cloning elements
|
||
|
--> $DIR/map_clone.rs:7:26
|
||
|
|
|
||
|
7 | let _: Vec<String> = vec![String::new()].iter().map(|x| x.clone()).collect();
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `cloned` method: `vec![String::new()].iter().cloned()`
|
||
|
|
||
|
error: You are using an explicit closure for cloning elements
|
||
|
--> $DIR/map_clone.rs:8:23
|
||
|
|
|
||
|
8 | let _: Vec<u32> = vec![42, 43].iter().map(|&x| x).collect();
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `cloned` method: `vec![42, 43].iter().cloned()`
|
||
|
|
||
|
error: aborting due to 3 previous errors
|
||
|
|