-
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 #5559 - alex-700:fix-while-let-on-iterator-fp, r=flip1995
Fix FP on while-let-on-iterator - fix `is_refutable` for slice patterns - fix `is_refutable` for bindings - add some TODO-s for cases, which can not be fixed easily fixes #3780 changelog: fix FP on while-let-on-iterator for arrays and bindings
- Loading branch information
Showing
4 changed files
with
160 additions
and
18 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
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,28 +1,46 @@ | ||
error: this loop could be written as a `for` loop | ||
--> $DIR/while_let_on_iterator.rs:8:5 | ||
--> $DIR/while_let_on_iterator.rs:9:5 | ||
| | ||
LL | while let Option::Some(x) = iter.next() { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in iter` | ||
| | ||
= note: `-D clippy::while-let-on-iterator` implied by `-D warnings` | ||
|
||
error: this loop could be written as a `for` loop | ||
--> $DIR/while_let_on_iterator.rs:13:5 | ||
--> $DIR/while_let_on_iterator.rs:14:5 | ||
| | ||
LL | while let Some(x) = iter.next() { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in iter` | ||
|
||
error: this loop could be written as a `for` loop | ||
--> $DIR/while_let_on_iterator.rs:18:5 | ||
--> $DIR/while_let_on_iterator.rs:19:5 | ||
| | ||
LL | while let Some(_) = iter.next() {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in iter` | ||
|
||
error: this loop could be written as a `for` loop | ||
--> $DIR/while_let_on_iterator.rs:97:9 | ||
--> $DIR/while_let_on_iterator.rs:102:9 | ||
| | ||
LL | while let Some([..]) = it.next() {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for [..] in it` | ||
|
||
error: this loop could be written as a `for` loop | ||
--> $DIR/while_let_on_iterator.rs:109:9 | ||
| | ||
LL | while let Some([_x]) = it.next() {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for [_x] in it` | ||
|
||
error: this loop could be written as a `for` loop | ||
--> $DIR/while_let_on_iterator.rs:122:9 | ||
| | ||
LL | while let Some(x @ [_]) = it.next() { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x @ [_] in it` | ||
|
||
error: this loop could be written as a `for` loop | ||
--> $DIR/while_let_on_iterator.rs:154:9 | ||
| | ||
LL | while let Some(_) = y.next() { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in y` | ||
|
||
error: aborting due to 4 previous errors | ||
error: aborting due to 7 previous errors | ||
|