-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c286c4
commit 61f054f
Showing
2 changed files
with
548 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
error: unnecessary use of `copied` | ||
--> $DIR/unnecessary_iter_cloned.rs:31:22 | ||
| | ||
LL | for (t, path) in files.iter().copied() { | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::unnecessary-to-owned` implied by `-D warnings` | ||
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` | ||
--> $DIR/unnecessary_iter_cloned.rs:46: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 | ||
|
Oops, something went wrong.