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