rust-clippy/tests/ui/println_empty_string.rs

9 lines
98 B
Rust
Raw Normal View History

2017-10-20 14:45:17 +00:00
fn main() {
println!();
println!("");
match "a" {
_ => println!(""),
}
2017-10-20 14:45:17 +00:00
}