mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
36 lines
1,020 B
Text
36 lines
1,020 B
Text
error: unnecessary use of `copied`
|
|
--> tests/ui/unnecessary_iter_cloned.rs:29:22
|
|
|
|
|
LL | for (t, path) in files.iter().copied() {
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::unnecessary-to-owned` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_to_owned)]`
|
|
help: use
|
|
|
|
|
LL | for (t, path) in files {
|
|
| ~~~~~
|
|
help: remove this `&`
|
|
|
|
|
LL - let other = match get_file_path(&t) {
|
|
LL + let other = match get_file_path(t) {
|
|
|
|
|
|
|
error: unnecessary use of `copied`
|
|
--> tests/ui/unnecessary_iter_cloned.rs:44:22
|
|
|
|
|
LL | for (t, path) in files.iter().copied() {
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL | for (t, path) in files.iter() {
|
|
| ~~~~~~~~~~~~
|
|
help: remove this `&`
|
|
|
|
|
LL - let other = match get_file_path(&t) {
|
|
LL + let other = match get_file_path(t) {
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|