rust/tests/ui/issue_2356.stderr

15 lines
404 B
Plaintext
Raw Normal View History

2018-01-30 19:52:45 +00:00
error: this loop could be written as a `for` loop
2018-10-06 16:18:06 +00:00
--> $DIR/issue_2356.rs:27:29
2018-01-30 19:52:45 +00:00
|
2018-10-06 16:18:06 +00:00
27 | while let Some(e) = it.next() {
2018-01-30 19:52:45 +00:00
| ^^^^^^^^^ help: try: `for e in it { .. }`
|
note: lint level defined here
2018-10-06 16:18:06 +00:00
--> $DIR/issue_2356.rs:13:9
2018-01-30 19:52:45 +00:00
|
2018-10-06 16:18:06 +00:00
13 | #![deny(clippy::while_let_on_iterator)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-01-30 19:52:45 +00:00
error: aborting due to previous error