rust-clippy/tests/ui/println_empty_string.fixed

18 lines
219 B
Rust
Raw Permalink Normal View History

2020-02-04 07:20:49 +00:00
#![allow(clippy::match_single_binding)]
fn main() {
println!();
println!();
match "a" {
_ => println!(),
}
eprintln!();
eprintln!();
match "a" {
_ => eprintln!(),
}
}