mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-14 01:25:54 +00:00
9 lines
180 B
Rust
9 lines
180 B
Rust
|
// rustfmt-indent_match_arms: true
|
||
|
// Indent match arms
|
||
|
|
||
|
fn main() {
|
||
|
match lorem {
|
||
|
Lorem::Ipsum => (), Lorem::Dolor => (), Lorem::Sit => (), Lorem::Amet => (),
|
||
|
}
|
||
|
}
|