rust/tests/ui/while_let_on_iterator.stderr

29 lines
965 B
Plaintext
Raw Normal View History

error: this loop could be written as a `for` loop
2020-04-25 18:01:22 +00:00
--> $DIR/while_let_on_iterator.rs:8:5
|
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`
|
= note: `-D clippy::while-let-on-iterator` implied by `-D warnings`
error: this loop could be written as a `for` loop
2020-04-25 18:01:22 +00:00
--> $DIR/while_let_on_iterator.rs:13:5
|
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`
error: this loop could be written as a `for` loop
2020-04-25 18:01:22 +00:00
--> $DIR/while_let_on_iterator.rs:18:5
|
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`
error: this loop could be written as a `for` loop
2020-04-25 18:01:22 +00:00
--> $DIR/while_let_on_iterator.rs:97: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`
2020-04-25 18:51:23 +00:00
error: aborting due to 4 previous errors
2018-01-16 16:06:27 +00:00