rust-clippy/tests/ui/crashes/ice_exact_size.rs

20 lines
322 B
Rust
Raw Normal View History

2018-07-30 09:33:44 +00:00
#![deny(clippy::all)]
/// Test for https://github.com/rust-lang/rust-clippy/issues/1336
#[allow(dead_code)]
struct Foo;
impl Iterator for Foo {
type Item = ();
fn next(&mut self) -> Option<()> {
let _ = self.len() == 0;
unimplemented!()
}
}
2016-12-20 09:20:41 +00:00
impl ExactSizeIterator for Foo {}
fn main() {}