2016-05-09 13:11:25 -05:00
|
|
|
// rustfmt-use_try_shorthand: true
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = some_expr()?;
|
|
|
|
|
2018-05-07 16:23:14 -05:00
|
|
|
let y = a
|
|
|
|
.very
|
2016-05-12 14:50:43 -05:00
|
|
|
.loooooooooooooooooooooooooooooooooooooong()
|
|
|
|
.chain()
|
|
|
|
.inside()
|
|
|
|
.weeeeeeeeeeeeeee()?
|
|
|
|
.test()
|
|
|
|
.0
|
|
|
|
.x;
|
2016-05-09 13:11:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test() {
|
|
|
|
a?
|
|
|
|
}
|
2017-05-03 23:52:35 -05:00
|
|
|
|
|
|
|
fn issue1291() {
|
2017-06-11 23:01:41 -05:00
|
|
|
fs::create_dir_all(&gitfiledir).chain_err(|| {
|
|
|
|
format!(
|
|
|
|
"failed to create the {} submodule directory for the workarea",
|
|
|
|
name
|
|
|
|
)
|
|
|
|
})?;
|
2017-05-03 23:52:35 -05:00
|
|
|
}
|