rust/tests/data/parser/inline/0087_stmt_postfix_expr_ambiguity.rs

8 lines
84 B
Rust
Raw Normal View History

2018-08-07 09:00:45 -05:00
fn foo() {
match () {
_ => {}
() => {}
[] => {}
}
}