rust/tests/ui/copy_iterator.stderr

19 lines
450 B
Plaintext
Raw Normal View History

2018-07-17 12:22:55 -05:00
error: you are implementing `Iterator` on a `Copy` type
--> $DIR/copy_iterator.rs:6:1
2018-07-17 12:22:55 -05:00
|
2018-12-27 09:57:55 -06:00
LL | / impl Iterator for Countdown {
LL | |
LL | |
LL | | type Item = u8;
2018-07-17 12:22:55 -05:00
... |
2018-12-27 09:57:55 -06:00
LL | | }
LL | | }
2018-07-17 12:22:55 -05:00
| |_^
|
= note: consider implementing `IntoIterator` instead
2022-09-22 11:04:22 -05:00
= note: `-D clippy::copy-iterator` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::copy_iterator)]`
2018-07-17 12:22:55 -05:00
error: aborting due to 1 previous error
2018-07-17 12:22:55 -05:00