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