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