fn with_int(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 cannot be stored outside of its closure }