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