rust/tests/ui/span/regions-infer-borrow-scope-within-loop.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
486 B
Rust
Raw Normal View History

fn borrow<T>(x: &T) -> &T {x}
2015-01-03 15:45:00 +00:00
fn foo<C, M>(mut cond: C, mut make_box: M) where
C: FnMut() -> bool,
M: FnMut() -> Box<isize>,
2015-01-03 15:45:00 +00:00
{
let mut y: &isize;
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
assert_eq!(*x, *y);
if cond() { break; }
2017-12-14 01:27:23 +00:00
}
assert!(*y != 0);
}
fn main() {}