mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
14 lines
402 B
Text
14 lines
402 B
Text
error: this loop could be written as a `for` loop
|
|
--> $DIR/issue_2356.rs:17:9
|
|
|
|
|
LL | while let Some(e) = it.next() {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for e in it`
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/issue_2356.rs:2:9
|
|
|
|
|
LL | #![deny(clippy::while_let_on_iterator)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|