rust-clippy/tests/ui/issue_2356.rs
2018-08-29 11:08:29 -07:00

26 lines
499 B
Rust

#![feature(tool_lints)]
#![deny(clippy::while_let_on_iterator)]
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());
}