forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#77403 - flip1995:beta, r=pietroalbini
[beta][clippy] backport multiple FP fixes for a warn-by-default lint This backports the PR rust-lang/rust-clippy#6016 fixing multiple FPs: rust-lang/rust-clippy#5902 rust-lang/rust-clippy#5979 rust-lang/rust-clippy#5985 We didn't have any complaints about this lint, since me merged this PR. cc `@ebroto` (sorry I forgot about this, since we talked about the backport 3 weeks ago 😐) r? `@pietroalbini`
- Loading branch information
Showing
3 changed files
with
179 additions
and
61 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
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
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 |
---|---|---|
@@ -1,35 +1,43 @@ | ||
error: it looks like the same item is being pushed into this Vec | ||
--> $DIR/same_item_push.rs:16:9 | ||
--> $DIR/same_item_push.rs:23:9 | ||
| | ||
LL | spaces.push(vec![b' ']); | ||
| ^^^^^^ | ||
LL | vec.push(item); | ||
| ^^^ | ||
| | ||
= note: `-D clippy::same-item-push` implied by `-D warnings` | ||
= help: try using vec![vec![b' '];SIZE] or spaces.resize(NEW_SIZE, vec![b' ']) | ||
= help: try using vec![item;SIZE] or vec.resize(NEW_SIZE, item) | ||
|
||
error: it looks like the same item is being pushed into this Vec | ||
--> $DIR/same_item_push.rs:22:9 | ||
--> $DIR/same_item_push.rs:29:9 | ||
| | ||
LL | vec2.push(item); | ||
| ^^^^ | ||
LL | vec.push(item); | ||
| ^^^ | ||
| | ||
= help: try using vec![item;SIZE] or vec2.resize(NEW_SIZE, item) | ||
= help: try using vec![item;SIZE] or vec.resize(NEW_SIZE, item) | ||
|
||
error: it looks like the same item is being pushed into this Vec | ||
--> $DIR/same_item_push.rs:28:9 | ||
--> $DIR/same_item_push.rs:34:9 | ||
| | ||
LL | vec3.push(item); | ||
| ^^^^ | ||
LL | vec.push(13); | ||
| ^^^ | ||
| | ||
= help: try using vec![item;SIZE] or vec3.resize(NEW_SIZE, item) | ||
= help: try using vec![13;SIZE] or vec.resize(NEW_SIZE, 13) | ||
|
||
error: it looks like the same item is being pushed into this Vec | ||
--> $DIR/same_item_push.rs:33:9 | ||
--> $DIR/same_item_push.rs:39:9 | ||
| | ||
LL | vec4.push(13); | ||
| ^^^^ | ||
LL | vec.push(VALUE); | ||
| ^^^ | ||
| | ||
= help: try using vec![13;SIZE] or vec4.resize(NEW_SIZE, 13) | ||
= help: try using vec![VALUE;SIZE] or vec.resize(NEW_SIZE, VALUE) | ||
|
||
error: aborting due to 4 previous errors | ||
error: it looks like the same item is being pushed into this Vec | ||
--> $DIR/same_item_push.rs:45:9 | ||
| | ||
LL | vec.push(item); | ||
| ^^^ | ||
| | ||
= help: try using vec![item;SIZE] or vec.resize(NEW_SIZE, item) | ||
|
||
error: aborting due to 5 previous errors | ||
|