]> git.lizzy.rs Git - rust.git/blob - tests/target/long-match-arms-brace-newline.rs
Merge pull request #1780 from topecongiro/rfc/union
[rust.git] / tests / target / long-match-arms-brace-newline.rs
1 // rustfmt-format_strings: true
2 // rustfmt-force_format_strings: true
3 // rustfmt-max_width: 80
4 // rustfmt-control_brace_style: AlwaysNextLine
5
6 fn main() {
7     match x
8     {
9         aaaaaaaa::Bbbbb::Ccccccccccccc(_, Some(ref x))
10             if x == "aaaaaaaaaaa aaaaaaa aaaaaa" => Ok(()),
11         _ => Err(x),
12     }
13 }