rust/tests/ui/issue_2356.stderr

15 lines
404 B
Plaintext
Raw Normal View History

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