rust-clippy/tests/ui/unnecessary_clone.stderr

61 lines
1.9 KiB
Text
Raw Normal View History

2020-01-06 06:36:33 +00:00
error: using `.clone()` on a ref-counted pointer
--> $DIR/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`
2017-10-10 04:07:12 +00:00
2020-01-06 06:36:33 +00:00
error: using `.clone()` on a ref-counted pointer
--> $DIR/unnecessary_clone.rs:26: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
--> $DIR/unnecessary_clone.rs:29: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
--> $DIR/unnecessary_clone.rs:32: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
--> $DIR/unnecessary_clone.rs:36: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
--> $DIR/unnecessary_clone.rs:40: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`
2017-10-10 04:07:12 +00:00
error: using `clone` on type `Option<T>` which implements the `Copy` trait
--> $DIR/unnecessary_clone.rs:42: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
--> $DIR/unnecessary_clone.rs:76: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
--> $DIR/unnecessary_clone.rs:95: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