rust-clippy/tests/ui/unnecessary_clone.stderr

101 lines
3.1 KiB
Text
Raw Normal View History

2017-10-10 04:07:12 +00:00
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:21:5
2017-10-10 04:07:12 +00:00
|
2018-12-27 15:57:55 +00:00
LL | 42.clone();
2017-10-10 04:07:12 +00:00
| ^^^^^^^^^^ help: try removing the `clone` call: `42`
|
= note: `-D clippy::clone-on-copy` implied by `-D warnings`
2017-10-10 04:07:12 +00:00
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:25:5
2017-10-10 04:07:12 +00:00
|
2018-12-27 15:57:55 +00:00
LL | (&42).clone();
2017-10-10 04:07:12 +00:00
| ^^^^^^^^^^^^^ help: try dereferencing it: `*(&42)`
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:28:5
|
2018-12-27 15:57:55 +00:00
LL | rc.borrow().clone();
| ^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*rc.borrow()`
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:34:14
|
LL | is_ascii('z'.clone());
| ^^^^^^^^^^^ help: try removing the `clone` call: `'z'`
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:38:14
|
LL | vec.push(42.clone());
| ^^^^^^^^^^ help: try removing the `clone` call: `42`
2020-01-06 06:36:33 +00:00
error: using `.clone()` on a ref-counted pointer
--> $DIR/unnecessary_clone.rs:48:5
2017-10-10 04:07:12 +00:00
|
2018-12-27 15:57:55 +00:00
LL | rc.clone();
2018-01-15 04:19:55 +00:00
| ^^^^^^^^^^ help: try this: `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:51:5
2017-10-10 04:07:12 +00:00
|
2018-12-27 15:57:55 +00:00
LL | arc.clone();
2018-01-15 04:19:55 +00:00
| ^^^^^^^^^^^ help: try this: `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:54:5
2017-10-10 04:07:12 +00:00
|
2018-12-27 15:57:55 +00:00
LL | rcweak.clone();
2018-01-15 04:19:55 +00:00
| ^^^^^^^^^^^^^^ help: try this: `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:57:5
2017-10-10 04:07:12 +00:00
|
2018-12-27 15:57:55 +00:00
LL | arc_weak.clone();
2018-01-15 04:19:55 +00:00
| ^^^^^^^^^^^^^^^^ help: try this: `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:61:33
2018-01-15 04:10:36 +00:00
|
LL | let _: Arc<dyn SomeTrait> = x.clone();
| ^^^^^^^^^ help: try this: `Arc::<SomeImpl>::clone(&x)`
2017-10-10 04:07:12 +00:00
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:65: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`
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:67: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 a double-reference; this will copy the reference instead of cloning the inner type
--> $DIR/unnecessary_clone.rs:73:22
2017-10-10 04:07:12 +00:00
|
2018-12-27 15:57:55 +00:00
LL | let z: &Vec<_> = y.clone();
2017-11-30 09:54:55 +00:00
| ^^^^^^^^^
2017-10-10 04:07:12 +00:00
|
= note: `#[deny(clippy::clone_double_ref)]` on by default
2017-11-30 09:54:55 +00:00
help: try dereferencing it
|
2018-12-27 15:57:55 +00:00
LL | let z: &Vec<_> = &(*y).clone();
2017-11-30 09:54:55 +00:00
| ^^^^^^^^^^^^^
help: or try being explicit about what type to clone
|
2018-12-27 15:57:55 +00:00
LL | let z: &Vec<_> = &std::vec::Vec<i32>::clone(y);
2017-11-30 09:54:55 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-10 04:07:12 +00:00
2018-10-19 18:51:25 +00:00
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:109: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: aborting due to 14 previous errors
2018-01-16 16:06:27 +00:00