]> git.proxmox.com Git - rustc.git/blob - src/tools/rust-analyzer/crates/parser/test_data/parser/inline/ok/0074_stmt_postfix_expr_ambiguity.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / src / tools / rust-analyzer / crates / parser / test_data / parser / inline / ok / 0074_stmt_postfix_expr_ambiguity.rs
1 fn foo() {
2 match () {
3 _ => {}
4 () => {}
5 [] => {}
6 }
7 }