2017-11-22 16:39:46 -06:00
|
|
|
// Copyright 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 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2017-12-06 15:19:06 -06:00
|
|
|
// As in `escape-upvar-ref.rs`, test closure that:
|
2017-11-22 16:39:46 -06:00
|
|
|
//
|
|
|
|
// - captures a variable `y`
|
|
|
|
// - stores reference to `y` into another, longer-lived spot
|
|
|
|
//
|
|
|
|
// except that the closure does so via a second closure.
|
|
|
|
|
|
|
|
// compile-flags:-Znll -Zborrowck=mir -Zverbose
|
|
|
|
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
|
|
|
|
#[rustc_regions]
|
|
|
|
fn test() {
|
|
|
|
let x = 44;
|
|
|
|
let mut p = &x;
|
|
|
|
|
|
|
|
{
|
|
|
|
let y = 22;
|
|
|
|
|
|
|
|
let mut closure = || {
|
|
|
|
let mut closure1 = || p = &y;
|
|
|
|
closure1();
|
|
|
|
};
|
|
|
|
|
|
|
|
closure();
|
|
|
|
} //~ ERROR borrowed value does not live long enough
|
|
|
|
|
|
|
|
deref(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn deref(_p: &i32) { }
|
|
|
|
|
|
|
|
fn main() { }
|