blob: 8d4e6c2cc006fecbcee9977e123f7e521dc3031b [file] [log] [blame] [edit]
#![warn(clippy::len_zero)]
#![feature(exact_size_is_empty)]
fn issue15890(vertices: &mut dyn ExactSizeIterator<Item = u8>) -> bool {
vertices.is_empty()
//~^ len_zero
}