7 lines
121 B
Rust
7 lines
121 B
Rust
|
// rustfmt-use_try_shorthand: true
|
||
|
// Use try! shorthand
|
||
|
|
||
|
fn main() {
|
||
|
let lorem = ipsum.map(|dolor| dolor.sit())?;
|
||
|
}
|