rust/tests/ui/println_empty_string.rs

11 lines
114 B
Rust

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