]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/end_region_1.rs
Auto merge of #45111 - aidanhs:aphs-bubble-worker-failures, r=alexcrichton
[rust.git] / src / test / mir-opt / end_region_1.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 emit-end-regions
12 // ignore-tidy-linelength
13
14 // This is just about the simplest program that exhibits an EndRegion.
15
16 fn main() {
17     let a = 3;
18     let b = &a;
19 }
20
21 // END RUST SOURCE
22 // START rustc.node4.SimplifyCfg-qualify-consts.after.mir
23 //     let mut _0: ();
24 //     let _1: i32;
25 //     let _2: &'10_1rs i32;
26 //
27 //     bb0: {
28 //         StorageLive(_1);
29 //         _1 = const 3i32;
30 //         StorageLive(_2);
31 //         _2 = &'10_1rs _1;
32 //         _0 = ();
33 //         EndRegion('10_1rs);
34 //         StorageDead(_2);
35 //         StorageDead(_1);
36 //         return;
37 //     }
38 // END rustc.node4.SimplifyCfg-qualify-consts.after.mir