rust/tests/ui/println_empty_string.fixed

11 lines
110 B
Rust
Raw Normal View History

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