-
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.
Auto merge of #6016 - giraffate:restrict_same_item_push, r=ebroto
Restrict `same_item_push` to suppress false positives It only emits a lint when the pushed item is a literal, a constant and an immutable binding that are initialized with those, as discussed in #5997 (review). Fix #5985 changelog: Restrict `same_item_push` to literals, constants and immutable bindings that are initialized with those. r? `@ebroto`
- Loading branch information
Showing
3 changed files
with
150 additions
and
86 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 | ||
|