rust-clippy/tests/ui/copy_iterator.stderr

17 lines
412 B
Text

error: you are implementing `Iterator` on a `Copy` type
--> $DIR/copy_iterator.rs:8:1
|
8 | / impl Iterator for Countdown {
9 | | type Item = u8;
10 | |
11 | | fn next(&mut self) -> Option<u8> {
... |
16 | | }
17 | | }
| |_^
|
= note: `-D clippy::copy-iterator` implied by `-D warnings`
= note: consider implementing `IntoIterator` instead
error: aborting due to previous error