]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unnecessary_clone.stderr
iterate List by value
[rust.git] / tests / ui / unnecessary_clone.stderr
index b2985f84b04f7c50aedd2abef88960cf9c21f51a..6176a2bc4647987a44a5a60c0197dd50c83c2e2d 100644 (file)
 error: using `clone` on a `Copy` type
-  --> $DIR/unnecessary_clone.rs:18:5
+  --> $DIR/unnecessary_clone.rs:21:5
    |
-18 |     42.clone();
+LL |     42.clone();
    |     ^^^^^^^^^^ help: try removing the `clone` call: `42`
    |
    = note: `-D clippy::clone-on-copy` implied by `-D warnings`
 
 error: using `clone` on a `Copy` type
-  --> $DIR/unnecessary_clone.rs:22:5
+  --> $DIR/unnecessary_clone.rs:25:5
    |
-22 |     (&42).clone();
+LL |     (&42).clone();
    |     ^^^^^^^^^^^^^ help: try dereferencing it: `*(&42)`
 
-error: using '.clone()' on a ref-counted pointer
-  --> $DIR/unnecessary_clone.rs:32:5
+error: using `clone` on a `Copy` type
+  --> $DIR/unnecessary_clone.rs:28:5
+   |
+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
    |
-32 |     rc.clone();
+LL |     vec.push(42.clone());
+   |              ^^^^^^^^^^ help: try removing the `clone` call: `42`
+
+error: using `.clone()` on a ref-counted pointer
+  --> $DIR/unnecessary_clone.rs:48:5
+   |
+LL |     rc.clone();
    |     ^^^^^^^^^^ help: try this: `Rc::<bool>::clone(&rc)`
    |
    = note: `-D clippy::clone-on-ref-ptr` implied by `-D warnings`
 
-error: using '.clone()' on a ref-counted pointer
-  --> $DIR/unnecessary_clone.rs:35:5
+error: using `.clone()` on a ref-counted pointer
+  --> $DIR/unnecessary_clone.rs:51:5
    |
-35 |     arc.clone();
+LL |     arc.clone();
    |     ^^^^^^^^^^^ help: try this: `Arc::<bool>::clone(&arc)`
 
-error: using '.clone()' on a ref-counted pointer
-  --> $DIR/unnecessary_clone.rs:38:5
+error: using `.clone()` on a ref-counted pointer
+  --> $DIR/unnecessary_clone.rs:54:5
    |
-38 |     rcweak.clone();
+LL |     rcweak.clone();
    |     ^^^^^^^^^^^^^^ help: try this: `Weak::<bool>::clone(&rcweak)`
 
-error: using '.clone()' on a ref-counted pointer
-  --> $DIR/unnecessary_clone.rs:41:5
+error: using `.clone()` on a ref-counted pointer
+  --> $DIR/unnecessary_clone.rs:57:5
    |
-41 |     arc_weak.clone();
+LL |     arc_weak.clone();
    |     ^^^^^^^^^^^^^^^^ help: try this: `Weak::<bool>::clone(&arc_weak)`
 
-error: using '.clone()' on a ref-counted pointer
-  --> $DIR/unnecessary_clone.rs:45:29
+error: using `.clone()` on a ref-counted pointer
+  --> $DIR/unnecessary_clone.rs:61:33
    |
-45 |     let _: Arc<SomeTrait> = x.clone();
-   |                             ^^^^^^^^^ help: try this: `Arc::<SomeImpl>::clone(&x)`
+LL |     let _: Arc<dyn SomeTrait> = x.clone();
+   |                                 ^^^^^^^^^ help: try this: `Arc::<SomeImpl>::clone(&x)`
 
 error: using `clone` on a `Copy` type
-  --> $DIR/unnecessary_clone.rs:49:5
+  --> $DIR/unnecessary_clone.rs:65:5
    |
-49 |     t.clone();
+LL |     t.clone();
    |     ^^^^^^^^^ help: try removing the `clone` call: `t`
 
 error: using `clone` on a `Copy` type
-  --> $DIR/unnecessary_clone.rs:51:5
+  --> $DIR/unnecessary_clone.rs:67:5
    |
-51 |     Some(t).clone();
+LL |     Some(t).clone();
    |     ^^^^^^^^^^^^^^^ 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:57:22
+  --> $DIR/unnecessary_clone.rs:73:22
    |
-57 |     let z: &Vec<_> = y.clone();
+LL |     let z: &Vec<_> = y.clone();
    |                      ^^^^^^^^^
    |
-   = note: #[deny(clippy::clone_double_ref)] on by default
+   = note: `#[deny(clippy::clone_double_ref)]` on by default
 help: try dereferencing it
    |
-57 |     let z: &Vec<_> = &(*y).clone();
+LL |     let z: &Vec<_> = &(*y).clone();
    |                      ^^^^^^^^^^^^^
-help: or try being explicit about what type to clone
+help: or try being explicit if you are sure, that you want to clone a reference
    |
-57 |     let z: &Vec<_> = &std::vec::Vec<i32>::clone(y);
-   |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL |     let z: &Vec<_> = <&std::vec::Vec<i32>>::clone(y);
+   |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: called `cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
-  --> $DIR/unnecessary_clone.rs:64:27
+error: using `clone` on a `Copy` type
+  --> $DIR/unnecessary_clone.rs:109:20
+   |
+LL |         let _: E = a.clone();
+   |                    ^^^^^^^^^ help: try dereferencing it: `*****a`
+
+error: using `clone` on a double-reference; this will copy the reference instead of cloning the inner type
+  --> $DIR/unnecessary_clone.rs:114:22
+   |
+LL |         let _ = &mut encoded.clone();
+   |                      ^^^^^^^^^^^^^^^
+   |
+help: try dereferencing it
+   |
+LL |         let _ = &mut &(*encoded).clone();
+   |                      ^^^^^^^^^^^^^^^^^^^
+help: or try being explicit if you are sure, that you want to clone a reference
+   |
+LL |         let _ = &mut <&[u8]>::clone(encoded);
+   |                      ^^^^^^^^^^^^^^^^^^^^^^^
+
+error: using `clone` on a double-reference; this will copy the reference instead of cloning the inner type
+  --> $DIR/unnecessary_clone.rs:115:18
+   |
+LL |         let _ = &encoded.clone();
+   |                  ^^^^^^^^^^^^^^^
+   |
+help: try dereferencing it
    |
-64 |     let v2 : Vec<isize> = v.iter().cloned().collect();
-   |                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL |         let _ = &&(*encoded).clone();
+   |                  ^^^^^^^^^^^^^^^^^^^
+help: or try being explicit if you are sure, that you want to clone a reference
    |
-   = note: `-D clippy::iter-cloned-collect` implied by `-D warnings`
+LL |         let _ = &<&[u8]>::clone(encoded);
+   |                  ^^^^^^^^^^^^^^^^^^^^^^^
 
-error: aborting due to 11 previous errors
+error: aborting due to 16 previous errors