2018-07-17 12:22:55 -05:00
|
|
|
error: you are implementing `Iterator` on a `Copy` type
|
2018-08-01 09:30:44 -05:00
|
|
|
--> $DIR/copy_iterator.rs:8:1
|
2018-07-17 12:22:55 -05:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
8 | / impl Iterator for Countdown {
|
|
|
|
9 | | type Item = u8;
|
|
|
|
10 | |
|
|
|
|
11 | | fn next(&mut self) -> Option<u8> {
|
2018-07-17 12:22:55 -05:00
|
|
|
... |
|
2018-08-01 09:30:44 -05:00
|
|
|
16 | | }
|
|
|
|
17 | | }
|
2018-07-17 12:22:55 -05:00
|
|
|
| |_^
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::copy-iterator` implied by `-D warnings`
|
2018-07-17 12:22:55 -05:00
|
|
|
= note: consider implementing `IntoIterator` instead
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|