2018-07-17 17:22:55 +00:00
|
|
|
error: you are implementing `Iterator` on a `Copy` type
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/copy_iterator.rs:6:1
|
2018-07-17 17:22:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl Iterator for Countdown {
|
|
|
|
LL | | type Item = u8;
|
|
|
|
LL | |
|
|
|
|
LL | | fn next(&mut self) -> Option<u8> {
|
2018-07-17 17:22:55 +00:00
|
|
|
... |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2018-07-17 17:22:55 +00:00
|
|
|
| |_^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::copy-iterator` implied by `-D warnings`
|
2018-07-17 17:22:55 +00:00
|
|
|
= note: consider implementing `IntoIterator` instead
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|