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