rust-clippy/tests/ice_exacte_size.rs
Oliver Schneider 0a7ae5fec8
run rustfmt
2016-12-20 10:20:41 +01:00

17 lines
275 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#![deny(clippy)]
#[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 {}