2018-07-17 19:22:55 +02:00
|
|
|
error: you are implementing `Iterator` on a `Copy` type
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/copy_iterator.rs:6:1
|
2018-07-17 19:22:55 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / impl Iterator for Countdown {
|
|
|
|
LL | |
|
2023-08-24 21:32:12 +02:00
|
|
|
LL | |
|
|
|
|
LL | | type Item = u8;
|
2018-07-17 19:22:55 +02:00
|
|
|
... |
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2018-07-17 19:22:55 +02:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
= note: consider implementing `IntoIterator` instead
|
2022-09-22 20:04:22 +04:00
|
|
|
= note: `-D clippy::copy-iterator` implied by `-D warnings`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::copy_iterator)]`
|
2018-07-17 19:22:55 +02:00
|
|
|
|
2023-11-21 17:08:42 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-07-17 19:22:55 +02:00
|
|
|
|