2024-07-11 08:44:03 -05:00
|
|
|
error: you are iterating over `Iterator::next()` which is an Option; this will compile but is probably not what you want
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/iter_next_loop.rs:6:14
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
2024-07-11 08:44:03 -05:00
|
|
|
LL | for _ in x.iter().next() {}
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::iter-next-loop` implied by `-D warnings`
|
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::iter_next_loop)]`
|
2023-07-02 07:35:19 -05:00
|
|
|
|
2023-11-21 11:08:42 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-07-02 07:35:19 -05:00
|
|
|
|