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