mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-13 09:05:00 +00:00
7 lines
127 B
Rust
7 lines
127 B
Rust
// rustfmt-use_try_shorthand: false
|
|
// Use try! shorthand
|
|
|
|
fn main() {
|
|
let lorem = try!(ipsum.map(|dolor| dolor.sit()));
|
|
}
|