2020-10-28 17:36:07 -05:00
|
|
|
// 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);
|
|
|
|
}
|
2021-04-27 09:55:11 -05:00
|
|
|
|
|
|
|
for item in [item1].iter() {
|
|
|
|
println!("{:?}", item);
|
|
|
|
}
|
2020-10-28 17:36:07 -05:00
|
|
|
}
|