aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0074_stmt_postfix_expr_ambiguity.rs
blob: 2edd578f9d7319f689c5b46ff9079ab0622229e6 (plain)
1
2
3
4
5
6
7
fn foo() {
    match () {
        _ => {}
        () => {}
        [] => {}
    }
}