rust/tests/target/binop-separator-back/patterns.rs

12 lines
273 B
Rust
Raw Normal View History

2021-09-20 18:29:28 -05:00
// rustfmt-binop_separator: Back
fn main() {
match val {
ThisIsA::ReallyLongPatternNameToHelpOverflowTheNextValueOntoTheNextLine |
ThisIsA::SecondValueSeparatedByAPipe |
ThisIsA::ThirdValueSeparatedByAPipe => {
//
}
}
}