rust/tests/source/configs-indent_match_arms-false.rs
2017-05-01 15:58:04 +02:00

8 lines
181 B
Rust

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