mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
220 B
Rust
14 lines
220 B
Rust
fn with_int<F>(f: F)
|
|
where
|
|
F: FnOnce(&isize),
|
|
{
|
|
let x = 3;
|
|
f(&x);
|
|
}
|
|
|
|
fn main() {
|
|
let mut x: Option<&isize> = None;
|
|
with_int(|y| x = Some(y));
|
|
//~^ ERROR borrowed data escapes outside of closure
|
|
}
|