rust-clippy/tests/ui/copy_iterator.stderr
2018-12-10 08:22:07 +01:00

17 lines
413 B
Text

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