rust/tests/ui/unnecessary_clone.stderr

83 lines
2.6 KiB
Plaintext
Raw Normal View History

2017-10-10 06:07:12 +02:00
error: using `clone` on a `Copy` type
2018-01-15 05:10:36 +01:00
--> $DIR/unnecessary_clone.rs:16:5
2017-10-10 06:07:12 +02:00
|
2018-01-15 05:10:36 +01:00
16 | 42.clone();
2017-10-10 06:07:12 +02:00
| ^^^^^^^^^^ help: try removing the `clone` call: `42`
|
= note: `-D clone-on-copy` implied by `-D warnings`
error: using `clone` on a `Copy` type
2018-01-15 05:10:36 +01:00
--> $DIR/unnecessary_clone.rs:20:5
2017-10-10 06:07:12 +02:00
|
2018-01-15 05:10:36 +01:00
20 | (&42).clone();
2017-10-10 06:07:12 +02:00
| ^^^^^^^^^^^^^ help: try dereferencing it: `*(&42)`
error: using '.clone()' on a ref-counted pointer
2018-01-15 05:10:36 +01:00
--> $DIR/unnecessary_clone.rs:30:5
2017-10-10 06:07:12 +02:00
|
2018-01-15 05:10:36 +01:00
30 | rc.clone();
| ^^^^^^^^^^ help: try this: `Rc<bool>::clone(&rc)`
2017-10-10 06:07:12 +02:00
|
= note: `-D clone-on-ref-ptr` implied by `-D warnings`
error: using '.clone()' on a ref-counted pointer
2018-01-15 05:10:36 +01:00
--> $DIR/unnecessary_clone.rs:33:5
2017-10-10 06:07:12 +02:00
|
2018-01-15 05:10:36 +01:00
33 | arc.clone();
| ^^^^^^^^^^^ help: try this: `Arc<bool>::clone(&arc)`
2017-10-10 06:07:12 +02:00
error: using '.clone()' on a ref-counted pointer
2018-01-15 05:10:36 +01:00
--> $DIR/unnecessary_clone.rs:36:5
2017-10-10 06:07:12 +02:00
|
2018-01-15 05:10:36 +01:00
36 | rcweak.clone();
| ^^^^^^^^^^^^^^ help: try this: `Weak<bool>::clone(&rcweak)`
2017-10-10 06:07:12 +02:00
error: using '.clone()' on a ref-counted pointer
2018-01-15 05:10:36 +01:00
--> $DIR/unnecessary_clone.rs:39:5
2017-10-10 06:07:12 +02:00
|
2018-01-15 05:10:36 +01:00
39 | arc_weak.clone();
| ^^^^^^^^^^^^^^^^ help: try this: `Weak<bool>::clone(&arc_weak)`
error: using '.clone()' on a ref-counted pointer
--> $DIR/unnecessary_clone.rs:43:29
|
43 | let _: Arc<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
2018-01-15 05:10:36 +01:00
--> $DIR/unnecessary_clone.rs:47:5
2017-10-10 06:07:12 +02:00
|
2018-01-15 05:10:36 +01:00
47 | t.clone();
2017-10-10 06:07:12 +02:00
| ^^^^^^^^^ help: try removing the `clone` call: `t`
error: using `clone` on a `Copy` type
2018-01-15 05:10:36 +01:00
--> $DIR/unnecessary_clone.rs:49:5
2017-10-10 06:07:12 +02:00
|
2018-01-15 05:10:36 +01:00
49 | 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
2018-01-15 05:10:36 +01:00
--> $DIR/unnecessary_clone.rs:55:22
2017-10-10 06:07:12 +02:00
|
2018-01-15 05:10:36 +01:00
55 | let z: &Vec<_> = y.clone();
2017-11-30 10:54:55 +01:00
| ^^^^^^^^^
2017-10-10 06:07:12 +02:00
|
= note: `-D clone-double-ref` implied by `-D warnings`
2017-11-30 10:54:55 +01:00
help: try dereferencing it
|
2018-01-15 05:10:36 +01:00
55 | let z: &Vec<_> = &(*y).clone();
2017-11-30 10:54:55 +01:00
| ^^^^^^^^^^^^^
help: or try being explicit about what type to clone
|
2018-01-15 05:10:36 +01:00
55 | 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 `cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
2018-01-15 05:10:36 +01:00
--> $DIR/unnecessary_clone.rs:62:27
2017-10-10 06:07:12 +02:00
|
2018-01-15 05:10:36 +01:00
62 | let v2 : Vec<isize> = v.iter().cloned().collect();
2017-10-10 06:07:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D iter-cloned-collect` implied by `-D warnings`