• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // rustfmt-use_try_shorthand: true
2 
main()3 fn main() {
4     let x = try!(some_expr());
5 
6     let y = try!(a.very.loooooooooooooooooooooooooooooooooooooong().chain().inside().weeeeeeeeeeeeeee()).test().0.x;
7 }
8 
test()9 fn test() {
10     a?
11 }
12 
issue1291()13 fn issue1291() {
14     try!(fs::create_dir_all(&gitfiledir).chain_err(|| {
15         format!("failed to create the {} submodule directory for the workarea",
16                 name)
17     }));
18 }
19