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