blob: 0e98d98cf87b3f1c36bb297ae8683d2059fca4ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
fn with_int<F>(f: F)
where
F: FnOnce(&isize),
{
let x = 3;
f(&x);
}
fn main() {
let mut x = None;
with_int(|y| x = Some(y));
//~^ ERROR borrowed data escapes outside of closure
}
|