]> git.proxmox.com Git - rustc.git/blame - src/test/mir-opt/nll/liveness-call-subtlety.rs
New upstream version 1.27.1+dfsg1
[rustc.git] / src / test / mir-opt / nll / liveness-call-subtlety.rs
CommitLineData
abe05a73
XL
1// Copyright 2012-2016 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
83c7162d 11// compile-flags:-Zborrowck=mir
abe05a73
XL
12
13fn can_panic() -> Box<usize> {
14 Box::new(44)
15}
16
17fn main() {
18 let mut x = Box::new(22);
19 x = can_panic();
20}
21
22// Check that:
23// - `_1` is the variable corresponding to `x`
24// and
25// - `_1` is live when `can_panic` is called (because it may be dropped)
26//
27// END RUST SOURCE
28// START rustc.main.nll.0.mir
29// | Live variables on entry to bb0: []
30// bb0: {
ff7c6d11 31// | Live variables on entry to bb0[0]: []
abe05a73 32// StorageLive(_1);
ff7c6d11
XL
33// | Live variables on entry to bb0[1]: []
34// _1 = const <std::boxed::Box<T>>::new(const 22usize) -> [return: bb2, unwind: bb1];
abe05a73
XL
35// }
36// END rustc.main.nll.0.mir
37// START rustc.main.nll.0.mir
ff7c6d11
XL
38// | Live variables on entry to bb2: [_1 (drop)]
39// bb2: {
40// | Live variables on entry to bb2[0]: [_1 (drop)]
abe05a73 41// StorageLive(_2);
ff7c6d11
XL
42// | Live variables on entry to bb2[1]: [_1 (drop)]
43// _2 = const can_panic() -> [return: bb3, unwind: bb4];
abe05a73
XL
44// }
45// END rustc.main.nll.0.mir