]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/end_region_5.rs
Auto merge of #44884 - arielb1:pack-safe, r=nikomatsakis,eddyb
[rust.git] / src / test / mir-opt / end_region_5.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // compile-flags: -Z identify_regions -Z span_free_formats -Z emit-end-regions
12
13 // Unwinding should EndRegion for in-scope borrows: Borrowing via by-ref closure.
14
15 fn main() {
16     let d = D(0);
17     foo(|| -> i32 { d.0 });
18 }
19
20 struct D(i32);
21 impl Drop for D { fn drop(&mut self) { println!("dropping D({})", self.0); } }
22
23 fn foo<F>(f: F) where F: FnOnce() -> i32 {
24     if f() > 0 { panic!("im positive"); }
25 }
26
27 // END RUST SOURCE
28 // START rustc.main.SimplifyCfg-qualify-consts.after.mir
29 // fn main() -> () {
30 //     ...
31 //     let mut _0: ();
32 //     ...
33 //     let _1: D;
34 //     ...
35 //     let mut _2: ();
36 //     let mut _3: [closure@NodeId(18) d:&'14s D];
37 //     let mut _4: &'14s D;
38 //     bb0: {
39 //         StorageLive(_1);
40 //         _1 = D::{{constructor}}(const 0i32,);
41 //         StorageLive(_3);
42 //         StorageLive(_4);
43 //         _4 = &'14s _1;
44 //         _3 = [closure@NodeId(18)] { d: _4 };
45 //         StorageDead(_4);
46 //         _2 = const foo(_3) -> [return: bb1, unwind: bb3];
47 //     }
48 //     bb1: {
49 //         EndRegion('14s);
50 //         StorageDead(_3);
51 //         _0 = ();
52 //         drop(_1) -> bb4;
53 //     }
54 //     bb2: {
55 //         resume;
56 //     }
57 //     bb3: {
58 //         EndRegion('14s);
59 //         drop(_1) -> bb2;
60 //     }
61 //     bb4: {
62 //         StorageDead(_1);
63 //         return;
64 //     }
65 // }
66 // END rustc.main.SimplifyCfg-qualify-consts.after.mir
67
68 // START rustc.main-{{closure}}.SimplifyCfg-qualify-consts.after.mir
69 // fn main::{{closure}}(_1: [closure@NodeId(18) d:&'14s D]) -> i32 {
70 //    let mut _0: i32;
71 //    let mut _2: i32;
72 //
73 //    bb0: {
74 //        StorageLive(_2);
75 //        _2 = ((*(_1.0: &'14s D)).0: i32);
76 //        _0 = _2;
77 //        StorageDead(_2);
78 //        return;
79 //    }
80 // END rustc.main-{{closure}}.SimplifyCfg-qualify-consts.after.mir