about summary refs log tree commit diff
path: root/tests/ui/println_empty_string.fixed
blob: 2b889b62ea991b1adb023046529925fcd306320a (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-rustfix
#![allow(clippy::match_single_binding)]

fn main() {
    println!();
    println!();

    match "a" {
        _ => println!(),
    }
}