2023-04-20 14:37:15 +00:00
|
|
|
//@run-rustfix
|
2018-07-28 15:34:52 +00:00
|
|
|
#![deny(clippy::while_let_on_iterator)]
|
2022-05-19 13:03:38 +00:00
|
|
|
#![allow(unused_mut)]
|
2022-10-02 19:13:22 +00:00
|
|
|
#![allow(clippy::uninlined_format_args)]
|
2018-01-30 19:52:45 +00:00
|
|
|
|
|
|
|
use std::iter::Iterator;
|
|
|
|
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn foo1<I: Iterator<Item = usize>>(mut it: I) {
|
|
|
|
while let Some(_) = it.next() {
|
|
|
|
println!("{:?}", it.size_hint());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo2<I: Iterator<Item = usize>>(mut it: I) {
|
|
|
|
while let Some(e) = it.next() {
|
|
|
|
println!("{:?}", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
Foo::foo1(vec![].into_iter());
|
|
|
|
Foo::foo2(vec![].into_iter());
|
|
|
|
}
|