2017-02-07 14:05:30 -06:00
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:16:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | while let Option::Some(x) = iter.next() {
|
2020-04-25 13:01:22 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in iter`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::while-let-on-iterator` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:21:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | while let Some(x) = iter.next() {
|
2020-04-25 13:01:22 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in iter`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:26:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | while let Some(_) = iter.next() {}
|
2020-04-25 13:01:22 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in iter`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-07-31 17:58:26 -05:00
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:102:9
|
2020-05-11 13:23:47 -05:00
|
|
|
|
|
|
|
|
LL | while let Some([..]) = it.next() {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for [..] in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:109:9
|
2020-05-11 13:23:47 -05:00
|
|
|
|
|
|
|
|
LL | while let Some([_x]) = it.next() {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for [_x] in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:122:9
|
2020-05-11 13:23:47 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(x @ [_]) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x @ [_] in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:142:9
|
2018-12-27 09:57:55 -06:00
|
|
|
|
|
2020-04-25 13:01:22 -05:00
|
|
|
LL | while let Some(_) = y.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in y`
|
2017-07-31 17:58:26 -05:00
|
|
|
|
2021-03-24 08:32:29 -05:00
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:199:9
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(m) = it.next() {
|
2021-09-17 20:44:21 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for m in it.by_ref()`
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:210:5
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(n) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for n in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:212:9
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(m) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for m in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:221:9
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(m) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for m in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:230:9
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(m) = it.next() {
|
2021-09-17 20:44:21 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for m in it.by_ref()`
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:247:9
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(m) = it.next() {
|
2021-09-17 20:44:21 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for m in it.by_ref()`
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:262:13
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(i) = self.0.next() {
|
2021-09-17 20:44:21 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for i in self.0.by_ref()`
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:294:13
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(i) = self.0.0.0.next() {
|
2021-09-17 20:44:21 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for i in self.0.0.0.by_ref()`
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:323:5
|
2021-03-24 08:32:29 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(n) = it.next() {
|
2021-09-17 20:44:21 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for n in it.by_ref()`
|
2021-03-24 08:32:29 -05:00
|
|
|
|
2021-04-13 08:30:01 -05:00
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:335:9
|
2021-05-21 11:27:40 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = it.next() {
|
2021-09-17 20:44:21 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in it.by_ref()`
|
2021-05-21 11:27:40 -05:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:349:5
|
2021-07-30 21:59:20 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = it.next() {
|
2021-09-17 20:44:21 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in it.by_ref()`
|
2021-07-30 21:59:20 -05:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:360:5
|
2021-07-30 21:59:20 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = it.0.next() {
|
2021-09-17 20:44:21 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in it.0.by_ref()`
|
2021-07-30 21:59:20 -05:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:395:5
|
2022-01-03 22:13:31 -06:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = s.x.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in s.x.by_ref()`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:402:5
|
2022-01-03 22:13:31 -06:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = x[0].next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in x[0].by_ref()`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2022-07-07 09:45:20 -05:00
|
|
|
--> $DIR/while_let_on_iterator.rs:410: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:420: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:430:9
|
|
|
|
|
|
|
|
|
LL | while let Some(x) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in it.by_ref()`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
|
|
|
--> $DIR/while_let_on_iterator.rs:440: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:450:5
|
2021-04-13 08:30:01 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(..) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in it`
|
|
|
|
|
2022-07-07 09:45:20 -05:00
|
|
|
error: aborting due to 26 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|