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

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