Sign in
rust
/
rust
/
8ccfc833a03dec7f84a01abc54b8e8a7d24bd09b
/
.
/
tests
/
ui
/
len_zero_unstable.fixed
blob: 8d4e6c2cc006fecbcee9977e123f7e521dc3031b [
file
]
#![warn(clippy::len_zero)]
#![feature(exact_size_is_empty)]
fn issue15890
(
vertices
:
&
mut dyn
ExactSizeIterator
<
Item
=
u8
>)
->
bool
{
vertices
.
is_empty
()
//~^ len_zero
}