summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/iter_nth_zero.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/iter_nth_zero.stderr')
-rw-r--r--src/tools/clippy/tests/ui/iter_nth_zero.stderr22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/iter_nth_zero.stderr b/src/tools/clippy/tests/ui/iter_nth_zero.stderr
new file mode 100644
index 000000000..29c56f3a9
--- /dev/null
+++ b/src/tools/clippy/tests/ui/iter_nth_zero.stderr
@@ -0,0 +1,22 @@
+error: called `.nth(0)` on a `std::iter::Iterator`, when `.next()` is equivalent
+ --> $DIR/iter_nth_zero.rs:20:14
+ |
+LL | let _x = s.iter().nth(0);
+ | ^^^^^^^^^^^^^^^ help: try calling `.next()` instead of `.nth(0)`: `s.iter().next()`
+ |
+ = note: `-D clippy::iter-nth-zero` implied by `-D warnings`
+
+error: called `.nth(0)` on a `std::iter::Iterator`, when `.next()` is equivalent
+ --> $DIR/iter_nth_zero.rs:25:14
+ |
+LL | let _y = iter.nth(0);
+ | ^^^^^^^^^^^ help: try calling `.next()` instead of `.nth(0)`: `iter.next()`
+
+error: called `.nth(0)` on a `std::iter::Iterator`, when `.next()` is equivalent
+ --> $DIR/iter_nth_zero.rs:30:22
+ |
+LL | let _unwrapped = iter2.nth(0).unwrap();
+ | ^^^^^^^^^^^^ help: try calling `.next()` instead of `.nth(0)`: `iter2.next()`
+
+error: aborting due to 3 previous errors
+