2018-04-10 22:20:05 +00:00
|
|
|
#![feature(rustc_attrs)]
|
2014-07-30 05:08:39 +00:00
|
|
|
use std::ops::FnMut;
|
|
|
|
|
2018-04-10 22:20:05 +00:00
|
|
|
fn main() { #![rustc_error] // rust-lang/rust#49855
|
2014-07-30 05:08:39 +00:00
|
|
|
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
|
2015-02-01 17:44:15 +00:00
|
|
|
f = move |a: isize, b: isize| { a + b + *c_ref };
|
2017-12-14 01:27:23 +00:00
|
|
|
}
|
2018-05-25 10:36:58 +00:00
|
|
|
f.use_mut();
|
2014-07-30 05:08:39 +00:00
|
|
|
}
|
2018-05-25 10:36:58 +00:00
|
|
|
|
|
|
|
trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
|
|
|
|
impl<T> Fake for T { }
|