2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
fn ignore<F>(_f: F) where F: for<'z> FnOnce(&'z isize) -> &'z isize {}
|
2012-07-26 10:51:57 -05:00
|
|
|
|
|
|
|
fn nested() {
|
|
|
|
let y = 3;
|
2014-02-10 06:44:03 -06:00
|
|
|
ignore(
|
2016-08-05 12:53:14 -05:00
|
|
|
|z| {
|
|
|
|
//~^ ERROR E0373
|
|
|
|
//~| NOTE may outlive borrowed value `y`
|
2014-02-10 06:44:03 -06:00
|
|
|
if false { &y } else { z }
|
2016-08-05 12:53:14 -05:00
|
|
|
//~^ NOTE `y` is borrowed here
|
2014-02-10 06:44:03 -06:00
|
|
|
});
|
2012-07-26 10:51:57 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
fn main() {}
|