summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/use_try_shorthand/true.rs
blob: 9015ec41e5e49474a14a3f707fab1a221caa61cc (plain)
1
2
3
4
5
6
// rustfmt-use_try_shorthand: true
// Use try! shorthand

fn main() {
    let lorem = try!(ipsum.map(|dolor| dolor.sit()));
}