mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-04 11:04:03 +00:00
12 lines
189 B
Rust
12 lines
189 B
Rust
// rustfmt-indent_match_arms: false
|
|
// Indent match arms
|
|
|
|
fn main() {
|
|
match lorem {
|
|
Lorem::Ipsum => (),
|
|
Lorem::Dolor => (),
|
|
Lorem::Sit => (),
|
|
Lorem::Amet => (),
|
|
}
|
|
}
|