rust/src/test/compile-fail/regions-escape-bound-fn.rs

10 lines
163 B
Rust
Raw Normal View History

fn with_int(f: fn(x: &int)) {
let x = 3;
f(&x);
}
fn main() {
2012-08-20 12:23:37 -07:00
let mut x: Option<&int> = None; //~ ERROR cannot infer
with_int(|y| x = Some(y));
}