2017-01-27 08:11:59 +13:00
|
|
|
// rustfmt-format_strings: true
|
2017-07-10 16:52:55 +09:00
|
|
|
// rustfmt-force_format_strings: true
|
2016-11-28 08:47:38 +08:00
|
|
|
// rustfmt-max_width: 80
|
|
|
|
// rustfmt-control_brace_style: AlwaysNextLine
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match x
|
|
|
|
{
|
2017-06-13 14:49:47 +12:00
|
|
|
aaaaaaaa::Bbbbb::Ccccccccccccc(_, Some(ref x))
|
2017-07-20 00:01:38 +09:00
|
|
|
if x == "aaaaaaaaaaa aaaaaaa aaaaaa" =>
|
|
|
|
{
|
|
|
|
Ok(())
|
|
|
|
}
|
2016-11-28 08:47:38 +08:00
|
|
|
_ => Err(x),
|
|
|
|
}
|
|
|
|
}
|