2014-04-16 17:58:55 -05: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.
|
|
|
|
|
|
|
|
|
2014-07-17 23:44:59 -05:00
|
|
|
fn borrow<T>(x: &T) -> &T {x}
|
2014-04-16 17:58:55 -05:00
|
|
|
|
2015-01-03 09:45:00 -06:00
|
|
|
fn foo<C, M>(mut cond: C, mut make_box: M) where
|
|
|
|
C: FnMut() -> bool,
|
2015-01-08 04:54:35 -06:00
|
|
|
M: FnMut() -> Box<isize>,
|
2015-01-03 09:45:00 -06:00
|
|
|
{
|
2015-01-08 04:54:35 -06:00
|
|
|
let mut y: &isize;
|
2014-04-16 17:58:55 -05:00
|
|
|
loop {
|
|
|
|
let x = make_box();
|
|
|
|
|
|
|
|
// Here we complain because the resulting region
|
|
|
|
// of this borrow is the fn body as a whole.
|
2014-07-07 18:35:15 -05:00
|
|
|
y = borrow(&*x); //~ ERROR `*x` does not live long enough
|
2014-04-16 17:58:55 -05:00
|
|
|
|
|
|
|
assert_eq!(*x, *y);
|
|
|
|
if cond() { break; }
|
|
|
|
}
|
|
|
|
assert!(*y != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|