]> git.lizzy.rs Git - rust.git/blob - tests/source/long-match-arms-brace-newline.rs
Remove `force_format_strings` in favour of `format_strings`
[rust.git] / tests / source / 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         aaaaaaaa::Bbbbb::Ccccccccccccc(_, Some(ref x)) if x ==
8             "aaaaaaaaaaa \
9             aaaaaaa \
10             aaaaaa" => {
11             Ok(())
12         }
13             _ => Err(x),
14     }
15 }