2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-01-08 02:53:58 +00:00
|
|
|
#![feature(box_syntax)]
|
2015-01-03 15:45:00 +00:00
|
|
|
#![feature(unboxed_closures)]
|
|
|
|
|
2013-12-10 07:16:18 +00:00
|
|
|
struct closure_box<'a> {
|
2015-01-03 15:45:00 +00:00
|
|
|
cl: Box<FnMut() + 'a>,
|
2012-08-20 23:53:33 +00:00
|
|
|
}
|
|
|
|
|
2015-01-03 15:45:00 +00:00
|
|
|
fn box_it<'r>(x: Box<FnMut() + 'r>) -> closure_box<'r> {
|
2012-08-20 23:53:33 +00:00
|
|
|
closure_box {cl: x}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2015-03-01 00:34:16 +00:00
|
|
|
let mut cl_box = {
|
2015-01-31 16:23:42 +00:00
|
|
|
let mut i = 3;
|
2015-03-01 00:34:16 +00:00
|
|
|
box_it(box || i += 1) //~ ERROR `i` does not live long enough
|
2012-08-20 23:53:33 +00:00
|
|
|
};
|
2015-01-03 15:45:00 +00:00
|
|
|
cl_box.cl.call_mut(());
|
2012-08-20 23:53:33 +00:00
|
|
|
}
|