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