Skip to content

Commit

Permalink
fixes tests, actually
Browse files Browse the repository at this point in the history
  • Loading branch information
merelymyself committed Jul 11, 2022
1 parent 5c286c4 commit 61f054f
Show file tree
Hide file tree
Showing 2 changed files with 548 additions and 0 deletions.
35 changes: 35 additions & 0 deletions tests/ui/unnecessary_iter_cloned.stderr
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

Loading

0 comments on commit 61f054f

Please sign in to comment.