rust/tests/ui/span/regionck-unboxed-closure-lifetimes.rs

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

17 lines
383 B
Rust
Raw Normal View History

#![feature(rustc_attrs)]
use std::ops::FnMut;
fn main() { #![rustc_error] // rust-lang/rust#49855
let mut f;
{
let c = 1;
2017-11-20 12:13:27 +00:00
let c_ref = &c;
2017-12-14 01:27:23 +00:00
//~^ ERROR `c` does not live long enough
f = move |a: isize, b: isize| { a + b + *c_ref };
2017-12-14 01:27:23 +00:00
}
f.use_mut();
}
trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
impl<T> Fake for T { }