2017-02-07 20:05:30 +00:00
|
|
|
error: this loop could be written as a `for` loop
|
2021-10-07 09:21:30 +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 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
|
2021-10-07 09:21:30 +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(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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:24: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:100: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:107: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:120: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:140: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:197: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:208: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:210: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:219: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:228: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:245: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:260: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: manual `!RangeInclusive::contains` implementation
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:261:20
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | if i < 3 || i > 7 {
|
|
|
|
| ^^^^^^^^^^^^^^ help: use: `!(3..=7).contains(&i)`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::manual-range-contains` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: this loop could be written as a `for` loop
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:292: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:321: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:333: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:347: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
|
2021-10-07 09:21:30 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:358: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
|
2022-01-13 12:18:19 +00:00
|
|
|
--> $DIR/while_let_on_iterator.rs:393:5
|
|
|
|
|
|
|
|
|
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
|
|
|
|
--> $DIR/while_let_on_iterator.rs:400:5
|
|
|
|
|
|
|
|
|
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
|
|
|
|
--> $DIR/while_let_on_iterator.rs:407:5
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(..) = it.next() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for _ in it`
|
|
|
|
|
2022-01-13 12:18:19 +00:00
|
|
|
error: aborting due to 23 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|