rust/tests/ui/unnecessary_clone.stderr

61 lines
1.9 KiB
Plaintext
Raw Normal View History

2020-01-06 00:36:33 -06:00
error: using `.clone()` on a ref-counted pointer
--> $DIR/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-01 06:08:01 -05:00
| ^^^^^^^^^^ help: try: `Rc::<bool>::clone(&rc)`
2017-10-09 23:07:12 -05:00
|
= note: `-D clippy::clone-on-ref-ptr` implied by `-D warnings`
2017-10-09 23:07:12 -05:00
2020-01-06 00:36:33 -06:00
error: using `.clone()` on a ref-counted pointer
--> $DIR/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-01 06:08:01 -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
--> $DIR/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-01 06:08:01 -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
--> $DIR/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-01 06:08:01 -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
--> $DIR/unnecessary_clone.rs:41:33
2018-01-14 22:10:36 -06:00
|
LL | let _: Arc<dyn SomeTrait> = x.clone();
2023-07-01 06:08:01 -05:00
| ^^^^^^^^^ help: try: `Arc::<SomeImpl>::clone(&x)`
2017-10-09 23:07:12 -05:00
error: using `clone` on type `T` which implements the `Copy` trait
--> $DIR/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`
|
= note: `-D clippy::clone-on-copy` implied by `-D warnings`
2017-10-09 23:07:12 -05:00
error: using `clone` on type `Option<T>` which implements the `Copy` trait
--> $DIR/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)`
error: using `clone` on type `E` which implements the `Copy` trait
--> $DIR/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
error: using `.clone()` on a ref-counted pointer
--> $DIR/unnecessary_clone.rs:105:14
|
LL | Some(try_opt!(Some(rc)).clone())
2023-07-01 06:08:01 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Rc::<u8>::clone(&try_opt!(Some(rc)))`
error: aborting due to 9 previous errors
2018-01-16 10:06:27 -06:00