rust-clippy/tests/run-pass/ice_exacte_size.rs
2019-01-08 21:46:39 +01:00

17 lines
255 B
Rust

#![deny(clippy::all)]
#[allow(dead_code)]
struct Foo;
impl Iterator for Foo {
type Item = ();
fn next(&mut self) -> Option<()> {
let _ = self.len() == 0;
unimplemented!()
}
}
impl ExactSizeIterator for Foo {}
fn main() {}