rust/tests/ui/unnecessary_clone.stderr

113 lines
3.8 KiB
Text
Raw Normal View History

2017-10-10 06:07:12 +02:00
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:17:5
2017-10-10 06:07:12 +02:00
|
2018-12-27 16:57:55 +01:00
LL | 42.clone();
2017-10-10 06:07:12 +02:00
| ^^^^^^^^^^ help: try removing the `clone` call: `42`
|
= note: `-D clippy::clone-on-copy` implied by `-D warnings`
2017-10-10 06:07:12 +02:00
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:21:5
2017-10-10 06:07:12 +02:00
|
2018-12-27 16:57:55 +01:00
LL | (&42).clone();
2017-10-10 06:07:12 +02:00
| ^^^^^^^^^^^^^ help: try dereferencing it: `*(&42)`
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:24:5
|
2018-12-27 16:57:55 +01:00
LL | rc.borrow().clone();
| ^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*rc.borrow()`
2017-10-10 06:07:12 +02:00
error: using '.clone()' on a ref-counted pointer
--> $DIR/unnecessary_clone.rs:34:5
2017-10-10 06:07:12 +02:00
|
2018-12-27 16:57:55 +01:00
LL | rc.clone();
2018-01-15 05:19:55 +01:00
| ^^^^^^^^^^ help: try this: `Rc::<bool>::clone(&rc)`
2017-10-10 06:07:12 +02:00
|
= note: `-D clippy::clone-on-ref-ptr` implied by `-D warnings`
2017-10-10 06:07:12 +02:00
error: using '.clone()' on a ref-counted pointer
--> $DIR/unnecessary_clone.rs:37:5
2017-10-10 06:07:12 +02:00
|
2018-12-27 16:57:55 +01:00
LL | arc.clone();
2018-01-15 05:19:55 +01:00
| ^^^^^^^^^^^ help: try this: `Arc::<bool>::clone(&arc)`
2017-10-10 06:07:12 +02:00
error: using '.clone()' on a ref-counted pointer
--> $DIR/unnecessary_clone.rs:40:5
2017-10-10 06:07:12 +02:00
|
2018-12-27 16:57:55 +01:00
LL | rcweak.clone();
2018-01-15 05:19:55 +01:00
| ^^^^^^^^^^^^^^ help: try this: `Weak::<bool>::clone(&rcweak)`
2017-10-10 06:07:12 +02:00
error: using '.clone()' on a ref-counted pointer
--> $DIR/unnecessary_clone.rs:43:5
2017-10-10 06:07:12 +02:00
|
2018-12-27 16:57:55 +01:00
LL | arc_weak.clone();
2018-01-15 05:19:55 +01:00
| ^^^^^^^^^^^^^^^^ help: try this: `Weak::<bool>::clone(&arc_weak)`
2018-01-15 05:10:36 +01:00
error: using '.clone()' on a ref-counted pointer
--> $DIR/unnecessary_clone.rs:47:33
2018-01-15 05:10:36 +01:00
|
LL | let _: Arc<dyn SomeTrait> = x.clone();
| ^^^^^^^^^ help: try this: `Arc::<SomeImpl>::clone(&x)`
2017-10-10 06:07:12 +02:00
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:51:5
2017-10-10 06:07:12 +02:00
|
2018-12-27 16:57:55 +01:00
LL | t.clone();
2017-10-10 06:07:12 +02:00
| ^^^^^^^^^ help: try removing the `clone` call: `t`
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:53:5
2017-10-10 06:07:12 +02:00
|
2018-12-27 16:57:55 +01:00
LL | Some(t).clone();
2017-10-10 06:07:12 +02: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:59:22
2017-10-10 06:07:12 +02:00
|
2018-12-27 16:57:55 +01:00
LL | let z: &Vec<_> = y.clone();
2017-11-30 10:54:55 +01:00
| ^^^^^^^^^
2017-10-10 06:07:12 +02:00
|
= note: `#[deny(clippy::clone_double_ref)]` on by default
2017-11-30 10:54:55 +01:00
help: try dereferencing it
|
2018-12-27 16:57:55 +01:00
LL | let z: &Vec<_> = &(*y).clone();
2017-11-30 10:54:55 +01:00
| ^^^^^^^^^^^^^
help: or try being explicit about what type to clone
|
2018-12-27 16:57:55 +01:00
LL | let z: &Vec<_> = &std::vec::Vec<i32>::clone(y);
2017-11-30 10:54:55 +01:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-10 06:07:12 +02:00
error: called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
--> $DIR/unnecessary_clone.rs:66:27
2017-10-10 06:07:12 +02:00
|
2018-12-27 16:57:55 +01:00
LL | let v2: Vec<isize> = v.iter().cloned().collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.to_vec()`
2017-10-10 06:07:12 +02:00
|
= note: `-D clippy::iter-cloned-collect` implied by `-D warnings`
2017-10-10 06:07:12 +02:00
error: called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
2019-02-20 05:06:00 +01:00
--> $DIR/unnecessary_clone.rs:71:38
|
2019-02-20 05:06:00 +01:00
LL | let _: Vec<isize> = vec![1, 2, 3].iter().cloned().collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.to_vec()`
error: called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
--> $DIR/unnecessary_clone.rs:76:24
|
LL | .to_bytes()
| ________________________^
LL | | .iter()
LL | | .cloned()
LL | | .collect();
| |______________________^ help: try: `.to_vec()`
2018-10-19 20:51:25 +02:00
error: using `clone` on a `Copy` type
--> $DIR/unnecessary_clone.rs:114:20
2018-12-27 16:57:55 +01:00
|
LL | let _: E = a.clone();
| ^^^^^^^^^ help: try dereferencing it: `*****a`
2018-10-19 20:51:25 +02:00
error: aborting due to 15 previous errors
2018-01-16 17:06:27 +01:00