2017-01-27 08:11:59 +13:00
|
|
|
// rustfmt-format_strings: true
|
2016-11-28 08:47:38 +08:00
|
|
|
// 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),
|
|
|
|
}
|
|
|
|
}
|