// Copyright 2012-2016 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // Test for the subregion constraints. In this case, the region R3 on // `p` includes two disjoint regions of the control-flow graph. The // borrows in `&v[0]` and `&v[1]` each (in theory) have to outlive R3, // but only at a particular point, and hence they wind up including // distinct regions. // compile-flags:-Znll -Zverbose // ^^^^^^^^^ force compiler to dump more region information #![allow(warnings)] fn use_x(_: usize) -> bool { true } fn main() { let mut v = [1, 2, 3]; let mut p = &v[0]; if true { use_x(*p); } else { use_x(22); } p = &v[1]; use_x(*p); } // END RUST SOURCE // START rustc.main.nll.0.mir // | '_#1r: {bb2[0], bb2[1], bb3[0], bb3[1]} // ... // | '_#3r: {bb8[1], bb8[2], bb8[3], bb8[4]} // | '_#4r: {bb2[1], bb3[0], bb3[1], bb8[2], bb8[3], bb8[4]} // ... // let mut _2: &'_#4r usize; // ... // _2 = &'_#1r _1[_3]; // ... // _2 = &'_#3r (*_10); // END rustc.main.nll.0.mir