rust/tests/ui/crashes/ice_exacte_size.rs

20 lines
322 B
Rust
Raw Normal View History

2018-07-30 11:33:44 +02: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 10:20:41 +01:00
impl ExactSizeIterator for Foo {}
fn main() {}