]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/end_region_8.rs
Fix various nll unused mut errors
[rust.git] / src / test / mir-opt / end_region_8.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 // ignore-tidy-linelength
13
14 // Unwinding should EndRegion for in-scope borrows: Move of borrow into closure.
15
16 fn main() {
17     let d = D(0);
18     let r = &d;
19     foo(move || -> i32 { r.0 });
20 }
21
22 struct D(i32);
23 impl Drop for D { fn drop(&mut self) { println!("dropping D({})", self.0); } }
24
25 fn foo<F>(f: F) where F: FnOnce() -> i32 {
26     if f() > 0 { panic!("im positive"); }
27 }
28
29 // END RUST SOURCE
30 // START rustc.main.SimplifyCfg-qualify-consts.after.mir
31 // fn main() -> () {
32 //    let mut _0: ();
33 //    ...
34 //    let _2: &'21_1rs D;
35 //    ...
36 //    let _1: D;
37 //    ...
38 //    let mut _3: ();
39 //    let mut _4: [closure@NodeId(22) r:&'19s D];
40 //    bb0: {
41 //        StorageLive(_1);
42 //        _1 = D::{{constructor}}(const 0i32,);
43 //        StorageLive(_2);
44 //        _2 = &'21_1rs _1;
45 //        StorageLive(_4);
46 //        _4 = [closure@NodeId(22)] { r: _2 };
47 //        _3 = const foo(move _4) -> [return: bb2, unwind: bb3];
48 //    }
49 //    bb1: {
50 //        resume;
51 //    }
52 //    bb2: {
53 //        EndRegion('19s);
54 //        StorageDead(_4);
55 //        _0 = ();
56 //        EndRegion('21_1rs);
57 //        StorageDead(_2);
58 //        drop(_1) -> [return: bb4, unwind: bb1];
59 //    }
60 //    bb3: {
61 //        EndRegion('19s);
62 //        EndRegion('21_1rs);
63 //        drop(_1) -> bb1;
64 //    }
65 //    bb4: {
66 //        StorageDead(_1);
67 //        return;
68 //    }
69 // }
70 // END rustc.main.SimplifyCfg-qualify-consts.after.mir
71
72 // START rustc.main-{{closure}}.SimplifyCfg-qualify-consts.after.mir
73 // fn main::{{closure}}(_1: [closure@NodeId(22) r:&'19s D]) -> i32 {
74 //     let mut _0: i32;
75 //
76 //     bb0: {
77 //         _0 = ((*(_1.0: &'21_1rs D)).0: i32);
78 //         return;
79 //     }
80 // }
81 // END rustc.main-{{closure}}.SimplifyCfg-qualify-consts.after.mir