2017-02-07 20:05:30 +00:00
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:15: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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::while_let_on_iterator)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:20: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
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:25: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
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:101:9
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | while let Some([..]) = it.next() {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for [..] in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:108:9
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | while let Some([_x]) = it.next() {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for [_x] in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:121:9
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(x @ [_]) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x @ [_] in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:141: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
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:198:9
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(m) = it.next() {
|
2021-09-28 17:03:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for m in it.by_ref()`
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:209:5
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(n) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for n in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:211:9
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(m) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for m in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:220:9
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(m) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for m in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:229:9
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(m) = it.next() {
|
2021-09-28 17:03:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for m in it.by_ref()`
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:246:9
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(m) = it.next() {
|
2021-09-28 17:03:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for m in it.by_ref()`
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:261:13
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(i) = self.0.next() {
|
2021-09-28 17:03:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for i in self.0.by_ref()`
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:293:13
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(i) = self.0.0.0.next() {
|
2021-09-28 17:03:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for i in self.0.0.0.by_ref()`
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:322:5
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(n) = it.next() {
|
2021-09-28 17:03:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for n in it.by_ref()`
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:334:9
|
2021-07-01 16:17:38 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = it.next() {
|
2021-09-28 17:03:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in it.by_ref()`
|
2021-07-01 16:17:38 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:348:5
|
2021-08-12 09:16:25 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = it.next() {
|
2021-09-28 17:03:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in it.by_ref()`
|
2021-08-12 09:16:25 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:359:5
|
2021-08-12 09:16:25 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = it.0.next() {
|
2021-09-28 17:03:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in it.0.by_ref()`
|
2021-08-12 09:16:25 +00:00
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:394:5
|
2022-01-13 12:18:19 +00: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
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:401:5
|
2022-01-13 12:18:19 +00: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
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:409:9
|
2022-07-18 07:39:37 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:419:9
|
2022-07-18 07:39:37 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:429:9
|
2022-07-18 07:39:37 +00:00
|
|
|
|
|
|
|
|
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
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:439:9
|
2022-07-18 07:39:37 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(x) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for x in it`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:449:5
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(..) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in it`
|
|
|
|
|
2022-07-18 07:39:37 +00:00
|
|
|
error: aborting due to 26 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|