]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/copy_iterator.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / copy_iterator.stderr
index f520156b01e66b206bafac703e3302e3740e30ab..34606df8595928a5f283c348e41faa37430d6d52 100644 (file)
@@ -1,16 +1,16 @@
 error: you are implementing `Iterator` on a `Copy` type
-  --> $DIR/copy_iterator.rs:6:1
+  --> $DIR/copy_iterator.rs:15:1
    |
- | / impl Iterator for Countdown {
- | |     type Item = u8;
- | |
- | |     fn next(&mut self) -> Option<u8> {
+LL | / impl Iterator for Countdown {
+LL | |     type Item = u8;
+LL | |
+LL | |     fn next(&mut self) -> Option<u8> {
 ...  |
-14 | |     }
-15 | | }
+LL | |     }
+LL | | }
    | |_^
    |
-   = note: `-D copy-iterator` implied by `-D warnings`
+   = note: `-D clippy::copy-iterator` implied by `-D warnings`
    = note: consider implementing `IntoIterator` instead
 
 error: aborting due to previous error