]> git.lizzy.rs Git - rust.git/blob - tests/target/long-match-arms-brace-newline.rs
Rebasing
[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))
9             if x == "aaaaaaaaaaa aaaaaaa aaaaaa" => Ok(()),
10         _ => Err(x),
11     }
12 }