summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/recover-ge-as-fat-arrow.fixed
blob: 7b73dfb02df894bed4d658c446ff8667332f3cef (plain)
1
2
3
4
5
6
7
// run-rustfix
fn main() {
    match 1 {
        1 => {} //~ ERROR
        _ => { let _: u16 = 2u16; } //~ ERROR
    }
}