mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
34 lines
973 B
Text
34 lines
973 B
Text
error: using `clone` on a `Copy` type
|
|
--> $DIR/clone_on_copy.rs:22:5
|
|
|
|
|
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/clone_on_copy.rs:26:5
|
|
|
|
|
LL | (&42).clone();
|
|
| ^^^^^^^^^^^^^ help: try dereferencing it: `*(&42)`
|
|
|
|
error: using `clone` on a `Copy` type
|
|
--> $DIR/clone_on_copy.rs:29:5
|
|
|
|
|
LL | rc.borrow().clone();
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*rc.borrow()`
|
|
|
|
error: using `clone` on a `Copy` type
|
|
--> $DIR/clone_on_copy.rs:35:14
|
|
|
|
|
LL | is_ascii('z'.clone());
|
|
| ^^^^^^^^^^^ help: try removing the `clone` call: `'z'`
|
|
|
|
error: using `clone` on a `Copy` type
|
|
--> $DIR/clone_on_copy.rs:39:14
|
|
|
|
|
LL | vec.push(42.clone());
|
|
| ^^^^^^^^^^ help: try removing the `clone` call: `42`
|
|
|
|
error: aborting due to 5 previous errors
|
|
|