about summary refs log tree commit diff
path: root/tests/ui/suggestions/issue-83892.rs
blob: b10dcf96eda9bb638e664860cc95bcbaad096a77 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-rustfix

fn func() -> u8 {
    0
}

fn main() {
    match () {
        () => func() //~ ERROR mismatched types
    }
}