rust/tests/target/configs/force_multiline_block/false.rs

21 lines
447 B
Rust
Raw Normal View History

// rustfmt-force_multiline_blocks: false
// Option forces multiline match arm and closure bodies to be wrapped in a block
fn main() {
match lorem {
2017-11-30 03:07:10 -06:00
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),
});
}