rust-clippy/tests/ui/copy_iterator.stderr
2023-08-22 17:18:11 +02:00

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