2014-02-05 16:33:10 -06:00
|
|
|
// Copyright 2014 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-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.
|
|
|
|
|
2015-01-07 18:53:58 -08:00
|
|
|
#![feature(box_syntax)]
|
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() {
|
2015-01-08 22:02:42 +11:00
|
|
|
let x : Box<usize> = box 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
|
|
|
}
|