19 lines
415 B
Rust
19 lines
415 B
Rust
|
// rustfmt-force_multiline_blocks: true
|
||
|
// Option forces multiline match arm and closure bodies to be wrapped in a block
|
||
|
|
||
|
fn main() {
|
||
|
match lorem {
|
||
|
Lorem::Ipsum => if ipsum {
|
||
|
println!("dolor");
|
||
|
},
|
||
|
Lorem::Dolor => println!("amet"),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
result.and_then(|maybe_value| match maybe_value {
|
||
|
None => Err("oops"),
|
||
|
Some(value) => Ok(1),
|
||
|
});
|
||
|
}
|