rust/tests/ui/single_element_loop.rs

11 lines
203 B
Rust
Raw Normal View History

// run-rustfix
// Tests from for_loop.rs that don't have suggestions
#[warn(clippy::single_element_loop)]
fn main() {
let item1 = 2;
for item in &[item1] {
println!("{}", item);
}
}