rust/tests/data/parser/inline/0085_match_arms_commas.rs
2018-08-07 16:32:09 +03:00

8 lines
83 B
Rust

fn foo() {
match () {
_ => (),
_ => {}
_ => ()
}
}