mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
17 lines
373 B
Text
17 lines
373 B
Text
error: you are implementing `Iterator` on a `Copy` type
|
|
--> $DIR/copy_iterator.rs:6:1
|
|
|
|
|
LL | / impl Iterator for Countdown {
|
|
LL | |
|
|
LL | |
|
|
LL | | type Item = u8;
|
|
... |
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= note: consider implementing `IntoIterator` instead
|
|
= note: `-D clippy::copy-iterator` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|