rust/tests/target/configs-force_multiline_block-false.rs
2017-11-30 18:07:10 +09:00

20 lines
447 B
Rust

// rustfmt-force_multiline_blocks: false
// 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),
});
}