Sign in
◑
Theme
rust
/
rust
/
aec7c2a7e32980e4eeceb4792fa91a3221bf7c7b
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
single_element_loop_nofix.rs
blob: 76f19f372bc40837f54726f5de9d0c050187aeb5 [
file
]
//@no-rustfix
#![
warn
(
clippy
::
single_element_loop
)]
#![
allow
(
clippy
::
single_range_in_vec_init
)]
fn
f
(
print
:
bool
)
{
for
_ in
[..
5
]
{
//~^ single_element_loop
if
print
{
println
!(
"Hello from f"
);
}
}
}