]> git.lizzy.rs Git - rust.git/blob - crates/syntax/test_data/parser/inline/ok/0071_match_expr.rs
Merge #7321
[rust.git] / crates / syntax / test_data / parser / inline / ok / 0071_match_expr.rs
1 fn foo() {
2     match () { };
3     match S {};
4     match { } { _ => () };
5     match { S {} } {};
6 }