rust/tests/data/parser/inline/0085_match_arms_commas.rs

8 lines
83 B
Rust
Raw Normal View History

2018-08-07 08:32:09 -05:00
fn foo() {
match () {
_ => (),
_ => {}
_ => ()
}
}