2018-01-30 19:52:45 +00:00
|
|
|
error: this loop could be written as a `for` loop
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/issue_2356.rs:17:9
|
2018-01-30 19:52:45 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | while let Some(e) = it.next() {
|
2020-04-25 18:07:55 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for e in it`
|
2018-01-30 19:52:45 +00:00
|
|
|
|
|
2020-01-31 19:21:10 +00:00
|
|
|
note: the lint level is defined here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/issue_2356.rs:1:9
|
2018-01-30 19:52:45 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | #![deny(clippy::while_let_on_iterator)]
|
2018-08-01 14:30:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-01-30 19:52:45 +00:00
|
|
|
|
2023-11-21 17:08:42 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-01-30 19:52:45 +00:00
|
|
|
|