rust/tests/run-pass/ice_exacte_size.rs

18 lines
250 B
Rust
Raw Normal View History

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