2020-01-06 06:36:33 +00:00
|
|
|
error: using `.clone()` on a ref-counted pointer
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_clone.rs:23:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | rc.clone();
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^^^^^^^^^ help: try: `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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::clone_on_ref_ptr)]`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: using `.clone()` on a ref-counted pointer
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_clone.rs:28:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | arc.clone();
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^^^^^^^^^^ help: try: `Arc::<bool>::clone(&arc)`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: using `.clone()` on a ref-counted pointer
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_clone.rs:32:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | rcweak.clone();
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: try: `Weak::<bool>::clone(&rcweak)`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: using `.clone()` on a ref-counted pointer
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_clone.rs:36:5
|
2017-10-10 04:07:12 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | arc_weak.clone();
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `Weak::<bool>::clone(&arc_weak)`
|
2018-01-15 04:10:36 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: using `.clone()` on a ref-counted pointer
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_clone.rs:41:33
|
2018-01-15 04:10:36 +00:00
|
|
|
|
|
2019-05-30 06:23:47 +00:00
|
|
|
LL | let _: Arc<dyn SomeTrait> = x.clone();
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^^^^^^^^ help: try: `Arc::<SomeImpl>::clone(&x)`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
error: using `clone` on type `T` which implements the `Copy` trait
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_clone.rs:46: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`
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::clone-on-copy` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::clone_on_copy)]`
|
2017-10-10 04:07:12 +00:00
|
|
|
|
2023-01-12 18:48:13 +00:00
|
|
|
error: using `clone` on type `Option<T>` which implements the `Copy` trait
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_clone.rs:50: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)`
|
|
|
|
|
2023-01-12 18:48:13 +00:00
|
|
|
error: using `clone` on type `E` which implements the `Copy` trait
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_clone.rs:85: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
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
error: using `.clone()` on a ref-counted pointer
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_clone.rs:105:14
|
2020-08-28 14:10:16 +00:00
|
|
|
|
|
|
|
|
LL | Some(try_opt!(Some(rc)).clone())
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Rc::<u8>::clone(&try_opt!(Some(rc)))`
|
2020-08-28 14:10:16 +00:00
|
|
|
|
2023-04-28 17:17:46 +00:00
|
|
|
error: aborting due to 9 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|