2018-10-02 08:13:43 -05:00
|
|
|
error: You are using an explicit closure for cloning elements
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/map_clone.rs:14:22
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
14 | let _: Vec<i8> = vec![5_i8; 6].iter().map(|x| *x).collect();
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `cloned` method: `vec![5_i8; 6].iter().cloned()`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::map-clone` implied by `-D warnings`
|
2018-10-02 08:13:43 -05:00
|
|
|
|
|
|
|
error: You are using an explicit closure for cloning elements
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/map_clone.rs:15:26
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
15 | let _: Vec<String> = vec![String::new()].iter().map(|x| x.clone()).collect();
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `cloned` method: `vec![String::new()].iter().cloned()`
|
2018-10-02 08:13:43 -05:00
|
|
|
|
|
|
|
error: You are using an explicit closure for cloning elements
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/map_clone.rs:16:23
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
16 | let _: Vec<u32> = vec![42, 43].iter().map(|&x| x).collect();
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `cloned` method: `vec![42, 43].iter().cloned()`
|
2018-10-02 08:13:43 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|