]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/nll/region-liveness-drop-no-may-dangle.rs
Update the tools CI to use --no-fail-fast and --save-toolstates.
[rust.git] / src / test / mir-opt / nll / region-liveness-drop-no-may-dangle.rs
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
11 // Basic test for liveness constraints: the region (`R1`) that appears
12 // in the type of `p` includes the points after `&v[0]` up to (but not
13 // including) the call to `use_x`. The `else` branch is not included.
14
15 // ignore-tidy-linelength
16 // ignore-test #46267
17 // compile-flags:-Znll -Zverbose
18 //                     ^^^^^^^^^ force compiler to dump more region information
19
20 #![allow(warnings)]
21
22 fn use_x(_: usize) -> bool { true }
23
24 fn main() {
25     let mut v = [1, 2, 3];
26     let p: Wrap<& /* R1 */ usize> = Wrap { value: &v[0] };
27     if true {
28         use_x(*p.value);
29     } else {
30         use_x(22);
31     }
32
33     // `p` will get dropped here. Because the `#[may_dangle]`
34     // attribute is not present on `Wrap`, we must conservatively
35     // assume that the dtor may access the `value` field, and hence we
36     // must consider R1 to be live.
37 }
38
39 struct Wrap<T> {
40     value: T
41 }
42
43 // Look ma, no `#[may_dangle]` attribute here.
44 impl<T> Drop for Wrap<T> {
45     fn drop(&mut self) { }
46 }
47
48 // END RUST SOURCE
49 // START rustc.main.nll.0.mir
50 // | '_#5r: {bb1[3], bb1[4], bb1[5], bb2[0], bb2[1], bb2[2], bb3[0], bb4[0], bb4[1], bb4[2], bb6[0], bb7[0], bb7[1], bb8[0]}
51 // END rustc.main.nll.0.mir