2017-10-09 23:07:12 -05:00
|
|
|
error: using `clone` on a `Copy` type
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:26:5
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
26 | 42.clone();
|
2017-10-09 23:07:12 -05:00
|
|
|
| ^^^^^^^^^^ help: try removing the `clone` call: `42`
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::clone-on-copy` implied by `-D warnings`
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
|
|
error: using `clone` on a `Copy` type
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:30:5
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
30 | (&42).clone();
|
2017-10-09 23:07:12 -05:00
|
|
|
| ^^^^^^^^^^^^^ help: try dereferencing it: `*(&42)`
|
|
|
|
|
2018-10-18 23:03:56 -05:00
|
|
|
error: using `clone` on a `Copy` type
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:33:5
|
2018-10-18 23:03:56 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
33 | rc.borrow().clone();
|
2018-10-18 23:03:56 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*rc.borrow()`
|
|
|
|
|
2017-10-09 23:07:12 -05:00
|
|
|
error: using '.clone()' on a ref-counted pointer
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:43:5
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
43 | rc.clone();
|
2018-01-14 22:19:55 -06:00
|
|
|
| ^^^^^^^^^^ help: try this: `Rc::<bool>::clone(&rc)`
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::clone-on-ref-ptr` implied by `-D warnings`
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
|
|
error: using '.clone()' on a ref-counted pointer
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:46:5
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
46 | arc.clone();
|
2018-01-14 22:19:55 -06:00
|
|
|
| ^^^^^^^^^^^ help: try this: `Arc::<bool>::clone(&arc)`
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
|
|
error: using '.clone()' on a ref-counted pointer
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:49:5
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
49 | rcweak.clone();
|
2018-01-14 22:19:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^ help: try this: `Weak::<bool>::clone(&rcweak)`
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
|
|
error: using '.clone()' on a ref-counted pointer
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:52:5
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
52 | arc_weak.clone();
|
2018-01-14 22:19:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try this: `Weak::<bool>::clone(&arc_weak)`
|
2018-01-14 22:10:36 -06:00
|
|
|
|
|
|
|
error: using '.clone()' on a ref-counted pointer
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:56:29
|
2018-01-14 22:10:36 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
56 | let _: Arc<SomeTrait> = x.clone();
|
2018-01-14 22:19:55 -06:00
|
|
|
| ^^^^^^^^^ help: try this: `Arc::<SomeImpl>::clone(&x)`
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
|
|
error: using `clone` on a `Copy` type
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:60:5
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
60 | t.clone();
|
2017-10-09 23:07:12 -05:00
|
|
|
| ^^^^^^^^^ help: try removing the `clone` call: `t`
|
|
|
|
|
|
|
|
error: using `clone` on a `Copy` type
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:62:5
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
62 | Some(t).clone();
|
2017-10-09 23:07:12 -05:00
|
|
|
| ^^^^^^^^^^^^^^^ help: try removing the `clone` call: `Some(t)`
|
|
|
|
|
|
|
|
error: using `clone` on a double-reference; this will copy the reference instead of cloning the inner type
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:68:22
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
68 | let z: &Vec<_> = y.clone();
|
2017-11-30 03:54:55 -06:00
|
|
|
| ^^^^^^^^^
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: #[deny(clippy::clone_double_ref)] on by default
|
2017-11-30 03:54:55 -06:00
|
|
|
help: try dereferencing it
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
68 | let z: &Vec<_> = &(*y).clone();
|
2017-11-30 03:54:55 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
help: or try being explicit about what type to clone
|
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
68 | let z: &Vec<_> = &std::vec::Vec<i32>::clone(y);
|
2017-11-30 03:54:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
|
|
error: called `cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:75:26
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
75 | let v2: Vec<isize> = v.iter().cloned().collect();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-09 23:07:12 -05:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::iter-cloned-collect` implied by `-D warnings`
|
2017-10-09 23:07:12 -05:00
|
|
|
|
2018-10-19 13:51:25 -05:00
|
|
|
error: using `clone` on a `Copy` type
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/unnecessary_clone.rs:111:20
|
2018-10-19 13:51:25 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
111 | let _: E = a.clone();
|
2018-10-19 13:51:25 -05:00
|
|
|
| ^^^^^^^^^ help: try dereferencing it: `*****a`
|
|
|
|
|
|
|
|
error: aborting due to 13 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|