mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 20:54:13 +00:00
12 lines
221 B
Rust
12 lines
221 B
Rust
// rustfmt-use_try_shorthand: true
|
|
|
|
fn main() {
|
|
let x = try!(some_expr());
|
|
|
|
let y = try!(a.very.loooooooooooooooooooooooooooooooooooooong().chain().inside().weeeeeeeeeeeeeee()).test().0.x;
|
|
}
|
|
|
|
fn test() {
|
|
a?
|
|
}
|