summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/iter_next_slice.stderr
blob: d8b89061ff8954ebb4862cad8b0b5e443ab64949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error: using `.iter().next()` on an array
  --> $DIR/iter_next_slice.rs:9:13
   |
LL |     let _ = s.iter().next();
   |             ^^^^^^^^^^^^^^^ help: try calling: `s.first()`
   |
   = note: `-D clippy::iter-next-slice` implied by `-D warnings`

error: using `.iter().next()` on a Slice without end index
  --> $DIR/iter_next_slice.rs:12:13
   |
LL |     let _ = s[2..].iter().next();
   |             ^^^^^^^^^^^^^^^^^^^^ help: try calling: `s.get(2)`

error: using `.iter().next()` on a Slice without end index
  --> $DIR/iter_next_slice.rs:15:13
   |
LL |     let _ = v[5..].iter().next();
   |             ^^^^^^^^^^^^^^^^^^^^ help: try calling: `v.get(5)`

error: using `.iter().next()` on an array
  --> $DIR/iter_next_slice.rs:18:13
   |
LL |     let _ = v.iter().next();
   |             ^^^^^^^^^^^^^^^ help: try calling: `v.first()`

error: aborting due to 4 previous errors