2020-05-17 10:36:26 -05:00
|
|
|
error: you are iterating over `Iterator::next()` which is an Option; this will compile but is probably not what you want
|
|
|
|
--> $DIR/for_loop_unfixable.rs:21:15
|
2019-09-20 01:25:05 -05:00
|
|
|
|
|
2020-05-17 10:36:26 -05:00
|
|
|
LL | for _v in vec.iter().next() {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::iter-next-loop` implied by `-D warnings`
|
2019-09-20 01:25:05 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|