2012-08-20 18:53:33 -05:00
|
|
|
struct closure_box {
|
2012-09-07 16:50:47 -05:00
|
|
|
cl: &fn()
|
2012-08-20 18:53:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn box_it(x: &r/fn()) -> closure_box/&r {
|
|
|
|
closure_box {cl: x}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let cl_box = {
|
|
|
|
let mut i = 3;
|
|
|
|
box_it(|| i += 1) //~ ERROR cannot infer an appropriate lifetime
|
|
|
|
};
|
|
|
|
cl_box.cl();
|
|
|
|
}
|