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