end_region_5.rs 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// compile-flags: -Z identify_regions -Z span_free_formats
// ignore-tidy-linelength

// Unwinding should EndRegion for in-scope borrows: Borrowing via by-ref closure.

fn main() {
    let d = D(0);
    foo(|| -> i32 { d.0 });
}

struct D(i32);
impl Drop for D { fn drop(&mut self) { println!("dropping D({})", self.0); } }

fn foo<F>(f: F) where F: FnOnce() -> i32 {
    if f() > 0 { panic!("im positive"); }
}

// END RUST SOURCE
// START rustc.node4.SimplifyCfg-qualify-consts.after.mir
// fn main() -> () {
//     let mut _0: ();
//     let _1: D;
//     let mut _2: ();
34 35
//     let mut _3: [closure@NodeId(18) d:&'14s D];
//     let mut _4: &'14s D;
36 37 38
//     bb0: {
//         StorageLive(_1);
//         _1 = D::{{constructor}}(const 0i32,);
39
//         StorageLive(_3);
40
//         StorageLive(_4);
41
//         _4 = &'14s _1;
42 43 44
//         _3 = [closure@NodeId(18)] { d: _4 };
//         StorageDead(_4);
//         _2 = const foo(_3) -> [return: bb1, unwind: bb3];
45 46
//     }
//     bb1: {
47
//         StorageDead(_3);
48
//         EndRegion('14s);
49 50 51
//         _0 = ();
//         drop(_1) -> bb4;
//     }
52 53 54
//     bb2: {
//         resume;
//     }
55
//     bb3: {
56
//         EndRegion('14s);
57
//         drop(_1) -> bb2;
58 59 60 61 62 63 64 65 66
//     }
//     bb4: {
//         StorageDead(_1);
//         return;
//     }
// }
// END rustc.node4.SimplifyCfg-qualify-consts.after.mir

// START rustc.node18.SimplifyCfg-qualify-consts.after.mir
67
// fn main::{{closure}}(_1: [closure@NodeId(18) d:&'14s D]) -> i32 {
68 69 70 71 72
//    let mut _0: i32;
//    let mut _2: i32;
//
//    bb0: {
//        StorageLive(_2);
73
//        _2 = ((*(_1.0: &'14s D)).0: i32);
74 75 76 77 78
//        _0 = _2;
//        StorageDead(_2);
//        return;
//    }
// END rustc.node18.SimplifyCfg-qualify-consts.after.mir