summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/iter_next_loop.stderr
blob: acc55031c3b290bfda4eb6625b0039a79c7b750c (plain)
1
2
3
4
5
6
7
8
9
10
11
error: you are iterating over `Iterator::next()` which is an Option; this will compile but is probably not what you want
  --> tests/ui/iter_next_loop.rs:6:14
   |
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)]`

error: aborting due to 1 previous error