mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 14:52:56 +03:00
8 lines
178 B
Rust
8 lines
178 B
Rust
#![warn(clippy::len_zero)]
|
|
#![feature(exact_size_is_empty)]
|
|
|
|
fn issue15890(vertices: &mut dyn ExactSizeIterator<Item = u8>) -> bool {
|
|
vertices.is_empty()
|
|
//~^ len_zero
|
|
}
|