Sign in
rust
/
rustfmt
/
refs/heads/format_markdown_files_from_scratch
/
.
/
tests
/
target
/
long-match-arms-brace-newline.rs
blob: aeb384e7203edac6d865a368e3feb784a05717db [
file
] [
log
] [
blame
]
// rustfmt-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
),
}
}