Sign in
rust
/
rust
/
refs/heads/auto
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
len_zero_unstable.rs
blob: f59056c5c55b1a4bcbd841de7761ba2bfd11c532 [
file
] [
log
] [
blame
] [
edit
]
#![
warn
(
clippy
::
len_zero
)]
#![
feature
(
exact_size_is_empty
)]
fn
issue15890
(
vertices
:
&
mut
dyn
ExactSizeIterator
<
Item
=
u8
>)
->
bool
{
vertices
.
len
()
==
0
//~^ len_zero
}