rust/tests/target/configs-indent_match_arms-false.rs

12 lines
189 B
Rust
Raw Normal View History

// rustfmt-indent_match_arms: false
// Indent match arms
fn main() {
match lorem {
Lorem::Ipsum => (),
Lorem::Dolor => (),
Lorem::Sit => (),
Lorem::Amet => (),
}
}