rust/tests/ui/single_element_loop.fixed
2021-04-26 15:58:58 +02:00

16 lines
281 B
Rust

// 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);
}
{
let item = &item1;
println!("{:?}", item);
}
}