summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/iter_skip_next_unfixable.stderr
blob: 09a467793bd12e0cfbdf8b77d3e6e66716d42fad (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
29
30
31
32
33
34
35
36
37
38
39
40
error: called `skip(..).next()` on an iterator
  --> $DIR/iter_skip_next_unfixable.rs:9:26
   |
LL |     let _: Vec<&str> = sp.skip(1).next().unwrap().split(' ').collect();
   |                          ^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(1)`
   |
help: for this change `sp` has to be mutable
  --> $DIR/iter_skip_next_unfixable.rs:8:9
   |
LL |     let sp = test_string.split('|').map(|s| s.trim());
   |         ^^
   = note: `-D clippy::iter-skip-next` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::iter_skip_next)]`

error: called `skip(..).next()` on an iterator
  --> $DIR/iter_skip_next_unfixable.rs:12:29
   |
LL |         let _: Vec<&str> = s.skip(1).next().unwrap().split(' ').collect();
   |                             ^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(1)`
   |
help: for this change `s` has to be mutable
  --> $DIR/iter_skip_next_unfixable.rs:11:17
   |
LL |     if let Some(s) = Some(test_string.split('|').map(|s| s.trim())) {
   |                 ^

error: called `skip(..).next()` on an iterator
  --> $DIR/iter_skip_next_unfixable.rs:19:29
   |
LL |         let _: Vec<&str> = s.skip(1).next().unwrap().split(' ').collect();
   |                             ^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(1)`
   |
help: for this change `s` has to be mutable
  --> $DIR/iter_skip_next_unfixable.rs:15:17
   |
LL |     fn check<T>(s: T)
   |                 ^

error: aborting due to 3 previous errors