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