2020-05-20 12:58:41 -05:00
|
|
|
fn with_int<F>(f: F)
|
|
|
|
where
|
|
|
|
F: FnOnce(&isize),
|
|
|
|
{
|
2012-08-13 17:06:13 -05:00
|
|
|
let x = 3;
|
|
|
|
f(&x);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut x = None;
|
|
|
|
with_int(|y| x = Some(y));
|
2020-05-20 12:58:41 -05:00
|
|
|
//~^ ERROR borrowed data escapes outside of closure
|
2012-08-13 17:06:13 -05:00
|
|
|
}
|