]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/end_region_1.rs
Rollup merge of #54838 - 11Takanori:fix-typo, r=petrochenkov
[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.main.SimplifyCfg-qualify-consts.after.mir
23 //     let mut _0: ();
24 //     ...
25 //     let _2: &'10_1rs i32;
26 //     ...
27 //     let _1: i32;
28 //     ...
29 //     bb0: {
30 //         StorageLive(_1);
31 //         _1 = const 3i32;
32 //         FakeRead(ForLet, _1);
33 //         StorageLive(_2);
34 //         _2 = &'10_1rs _1;
35 //         FakeRead(ForLet, _2);
36 //         _0 = ();
37 //         EndRegion('10_1rs);
38 //         StorageDead(_2);
39 //         StorageDead(_1);
40 //         return;
41 //     }
42 // END rustc.main.SimplifyCfg-qualify-consts.after.mir