mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-22 12:43:36 +00:00
9 lines
181 B
Rust
9 lines
181 B
Rust
// rustfmt-indent_match_arms: false
|
|
// Indent match arms
|
|
|
|
fn main() {
|
|
match lorem {
|
|
Lorem::Ipsum => (), Lorem::Dolor => (), Lorem::Sit => (), Lorem::Amet => (),
|
|
}
|
|
}
|