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

12 lines
273 B
Rust

// rustfmt-binop_separator: Back
fn main() {
match val {
ThisIsA::ReallyLongPatternNameToHelpOverflowTheNextValueOntoTheNextLine |
ThisIsA::SecondValueSeparatedByAPipe |
ThisIsA::ThirdValueSeparatedByAPipe => {
//
}
}
}