mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
14 lines
275 B
Rust
14 lines
275 B
Rust
// 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);
|
|
}
|
|
|
|
for item in [item1].iter() {
|
|
println!("{:?}", item);
|
|
}
|
|
}
|