summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/for_loop_unfixable.stderr
blob: 50a86eaa68f7dffe5e4f632aea276cf3463a49bb (plain)
1
2
3
4
5
6
7
8
9
10
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:15:15
   |
LL |     for _v in vec.iter().next() {}
   |               ^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::iter-next-loop` implied by `-D warnings`

error: aborting due to previous error