]> git.lizzy.rs Git - rust.git/blob - tests/ui/println_empty_string.rs
Auto merge of #3645 - phansch:remove_copyright_headers, r=oli-obk
[rust.git] / tests / ui / println_empty_string.rs
1 // run-rustfix
2
3 fn main() {
4     println!();
5     println!("");
6
7     match "a" {
8         _ => println!(""),
9     }
10 }