2017-02-07 20:05:30 +00:00
|
|
|
error: this loop could be written as a `for` loop
|
2020-05-02 11:18:27 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:9:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | while let Option::Some(x) = iter.next() {
|
2020-04-25 18:01:22 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in iter`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::while-let-on-iterator` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2020-05-02 11:18:27 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:14:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | while let Some(x) = iter.next() {
|
2020-04-25 18:01:22 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in iter`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2020-05-02 11:18:27 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:19:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | while let Some(_) = iter.next() {}
|
2020-04-25 18:01:22 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in iter`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-07-31 22:58:26 +00:00
|
|
|
error: this loop could be written as a `for` loop
|
2020-05-02 11:18:27 +00:00
|
|
|
--> $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
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2020-04-25 18:01:22 +00:00
|
|
|
LL | while let Some(_) = y.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in y`
|
2017-07-31 22:58:26 +00:00
|
|
|
|
2020-05-02 11:18:27 +00:00
|
|
|
error: aborting due to 7 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|