rust/tests/source/configs-indent_match_arms-true.rs

9 lines
180 B
Rust
Raw Normal View History

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