rust/tests/ui/issue_2356.stderr

15 lines
404 B
Text
Raw Normal View History

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