2017-10-10 04:07:12 +00:00
|
|
|
error: using `clone` on a `Copy` type
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:17:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 42.clone();
|
2017-10-10 04:07:12 +00:00
|
|
|
| ^^^^^^^^^^ help: try removing the `clone` call: `42`
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::clone-on-copy` implied by `-D warnings`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
|
|
error: using `clone` on a `Copy` type
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:21:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | (&42).clone();
|
2017-10-10 04:07:12 +00:00
|
|
|
| ^^^^^^^^^^^^^ help: try dereferencing it: `*(&42)`
|
|
|
|
|
2018-10-19 04:03:56 +00:00
|
|
|
error: using `clone` on a `Copy` type
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:24:5
|
2018-10-19 04:03:56 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | rc.borrow().clone();
|
2018-10-19 04:03:56 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*rc.borrow()`
|
|
|
|
|
2017-10-10 04:07:12 +00:00
|
|
|
error: using '.clone()' on a ref-counted pointer
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:34:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | rc.clone();
|
2018-01-15 04:19:55 +00:00
|
|
|
| ^^^^^^^^^^ help: try this: `Rc::<bool>::clone(&rc)`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::clone-on-ref-ptr` implied by `-D warnings`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
|
|
error: using '.clone()' on a ref-counted pointer
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:37:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | arc.clone();
|
2018-01-15 04:19:55 +00:00
|
|
|
| ^^^^^^^^^^^ help: try this: `Arc::<bool>::clone(&arc)`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
|
|
error: using '.clone()' on a ref-counted pointer
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:40:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | rcweak.clone();
|
2018-01-15 04:19:55 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: try this: `Weak::<bool>::clone(&rcweak)`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
|
|
error: using '.clone()' on a ref-counted pointer
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:43:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | arc_weak.clone();
|
2018-01-15 04:19:55 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try this: `Weak::<bool>::clone(&arc_weak)`
|
2018-01-15 04:10:36 +00:00
|
|
|
|
|
|
|
error: using '.clone()' on a ref-counted pointer
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:47:29
|
2018-01-15 04:10:36 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: Arc<SomeTrait> = x.clone();
|
2018-01-15 04:19:55 +00:00
|
|
|
| ^^^^^^^^^ help: try this: `Arc::<SomeImpl>::clone(&x)`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
|
|
error: using `clone` on a `Copy` type
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:51:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | t.clone();
|
2017-10-10 04:07:12 +00:00
|
|
|
| ^^^^^^^^^ help: try removing the `clone` call: `t`
|
|
|
|
|
|
|
|
error: using `clone` on a `Copy` type
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:53:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Some(t).clone();
|
2017-10-10 04:07:12 +00: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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:59:22
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let z: &Vec<_> = y.clone();
|
2017-11-30 09:54:55 +00:00
|
|
|
| ^^^^^^^^^
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: #[deny(clippy::clone_double_ref)] on by default
|
2017-11-30 09:54:55 +00:00
|
|
|
help: try dereferencing it
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let z: &Vec<_> = &(*y).clone();
|
2017-11-30 09:54:55 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
help: or try being explicit about what type to clone
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let z: &Vec<_> = &std::vec::Vec<i32>::clone(y);
|
2017-11-30 09:54:55 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
|
|
error: called `cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:66:26
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let v2: Vec<isize> = v.iter().cloned().collect();
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::iter-cloned-collect` implied by `-D warnings`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
2018-10-19 18:51:25 +00:00
|
|
|
error: using `clone` on a `Copy` type
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_clone.rs:102:20
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | let _: E = a.clone();
|
|
|
|
| ^^^^^^^^^ help: try dereferencing it: `*****a`
|
2018-10-19 18:51:25 +00:00
|
|
|
|
|
|
|
error: aborting due to 13 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|