2015-10-07 22:11:25 +00:00
|
|
|
// Creating a stack closure which references a box and then
|
2015-06-09 20:26:21 +00:00
|
|
|
// transferring ownership of the box before invoking the stack
|
2013-05-27 19:21:45 +00:00
|
|
|
// closure results in a crash.
|
|
|
|
|
2022-07-07 02:36:10 +00:00
|
|
|
|
2014-05-06 01:56:44 +00:00
|
|
|
|
2015-01-08 11:02:42 +00:00
|
|
|
fn twice(x: Box<usize>) -> usize {
|
2013-05-27 19:21:45 +00:00
|
|
|
*x * 2
|
|
|
|
}
|
|
|
|
|
2015-01-08 11:02:42 +00:00
|
|
|
fn invoke<F>(f: F) where F: FnOnce() -> usize {
|
2013-05-27 19:21:45 +00:00
|
|
|
f();
|
|
|
|
}
|
|
|
|
|
2013-11-20 00:34:19 +00:00
|
|
|
fn main() {
|
2022-07-07 02:36:10 +00:00
|
|
|
let x : Box<usize> = Box::new(9);
|
2015-02-01 17:44:15 +00:00
|
|
|
let sq = || { *x * *x };
|
2013-05-27 19:21:45 +00:00
|
|
|
|
2014-02-21 23:41:51 +00:00
|
|
|
twice(x); //~ ERROR: cannot move out of
|
2013-05-27 19:21:45 +00:00
|
|
|
invoke(sq);
|
2013-09-24 00:20:36 +00:00
|
|
|
}
|