mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
c2c73189c8
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
18 lines
450 B
Text
18 lines
450 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`
|
|
= help: to override `-D warnings` add `#[allow(clippy::copy_iterator)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|