rust/tests/target/long-match-arms-brace-newline.rs
2017-07-20 00:42:00 +09:00

16 lines
348 B
Rust

// rustfmt-format_strings: true
// rustfmt-force_format_strings: true
// rustfmt-max_width: 80
// rustfmt-control_brace_style: AlwaysNextLine
fn main() {
match x
{
aaaaaaaa::Bbbbb::Ccccccccccccc(_, Some(ref x))
if x == "aaaaaaaaaaa aaaaaaa aaaaaa" =>
{
Ok(())
}
_ => Err(x),
}
}