The following code triggers the `len_without_is_empty` lint. ```rust impl Foo { fn len(&self) -> usize { 0 } } impl Foo { fn is_empty(&self) -> bool { true } } ```