aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0071_match_expr.rs
blob: c4021dc104878e00a6164b326ef1c3673e6e9948 (plain)
1
2
3
4
5
6
fn foo() {
    match () { };
    match S {};
    match { } { _ => () };
    match { S {} } {};
}