rust/crates/libsyntax2/tests/data/parser/inline/0069_match_arm.rs

7 lines
78 B
Rust
Raw Normal View History

2018-08-04 12:39:03 +02:00
fn foo() {
match () {
_ => (),
X | Y if Z => (),
};
}