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

11 lines
204 B
Rust

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