rust/tests/source/configs/use_try_shorthand/true.rs
2018-03-02 15:07:13 +13:00

6 lines
126 B
Rust

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