rust/tests/ui/iter_skip_next.stderr

36 lines
1.1 KiB
Text
Raw Normal View History

2020-01-24 09:04:46 +01:00
error: called `skip(x).next()` on an iterator
--> $DIR/iter_skip_next.rs:13:13
|
LL | let _ = some_vec.iter().skip(42).next();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::iter-skip-next` implied by `-D warnings`
2020-01-25 23:01:16 +01:00
= help: this is more succinctly expressed by calling `nth(x)`
2020-01-24 09:04:46 +01:00
error: called `skip(x).next()` on an iterator
--> $DIR/iter_skip_next.rs:14:13
|
LL | let _ = some_vec.iter().cycle().skip(42).next();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-24 09:04:46 +01:00
|
2020-01-25 23:01:16 +01:00
= help: this is more succinctly expressed by calling `nth(x)`
2020-01-24 09:04:46 +01:00
error: called `skip(x).next()` on an iterator
--> $DIR/iter_skip_next.rs:15:13
|
LL | let _ = (1..10).skip(10).next();
| ^^^^^^^^^^^^^^^^^^^^^^^
2020-01-24 09:04:46 +01:00
|
2020-01-25 23:01:16 +01:00
= help: this is more succinctly expressed by calling `nth(x)`
2020-01-24 09:04:46 +01:00
error: called `skip(x).next()` on an iterator
--> $DIR/iter_skip_next.rs:16:14
|
LL | let _ = &some_vec[..].iter().skip(3).next();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-24 09:04:46 +01:00
|
2020-01-25 23:01:16 +01:00
= help: this is more succinctly expressed by calling `nth(x)`
error: aborting due to 4 previous errors