14 lines
308 B
Rust
14 lines
308 B
Rust
|
// rustfmt-multiline_match_arm_forces_block: true
|
||
|
// Option forces multiline match arm bodies to be wrapped in a block
|
||
|
|
||
|
fn main() {
|
||
|
match lorem {
|
||
|
Lorem::Ipsum => {
|
||
|
if ipsum {
|
||
|
println!("dolor");
|
||
|
}
|
||
|
}
|
||
|
Lorem::Dolor => println!("amet"),
|
||
|
}
|
||
|
}
|