rust/tests/ui/println_empty_string.fixed

11 lines
110 B
Rust

// run-rustfix
fn main() {
println!();
println!();
match "a" {
_ => println!(),
}
}