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

7 lines
127 B
Rust

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