rust-clippy/tests/ui/unnecessary_clone.stderr

63 lines
2.1 KiB
Text
Raw Normal View History

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();
| ^^^^^^^^^^ help: try: `Rc::<bool>::clone(&rc)`
2017-10-10 04:07:12 +00:00
|
= note: `-D clippy::clone-on-ref-ptr` implied by `-D warnings`
= 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();
| ^^^^^^^^^^^ 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();
| ^^^^^^^^^^^^^^ 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();
| ^^^^^^^^^^^^^^^^ 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
|
LL | let _: Arc<dyn SomeTrait> = x.clone();
| ^^^^^^^^^ help: try: `Arc::<SomeImpl>::clone(&x)`
2017-10-10 04:07:12 +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`
|
= note: `-D clippy::clone-on-copy` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::clone_on_copy)]`
2017-10-10 04:07:12 +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)`
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
error: using `.clone()` on a ref-counted pointer
2024-02-17 12:16:29 +00:00
--> tests/ui/unnecessary_clone.rs:105:14
|
LL | Some(try_opt!(Some(rc)).clone())
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Rc::<u8>::clone(&try_opt!(Some(rc)))`
error: aborting due to 9 previous errors
2018-01-16 16:06:27 +00:00