Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
tools
/
rustfmt
/
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
),
}
}