2014-02-05 22:33:10 +00: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-06-09 20:26:21 +00:00
|
|
|
// Creating a stack closure which references an box and then
|
|
|
|
// transferring ownership of the box before invoking the stack
|
2013-05-27 19:21:45 +00:00
|
|
|
// closure results in a crash.
|
|
|
|
|
2015-01-08 02:53:58 +00:00
|
|
|
#![feature(box_syntax)]
|
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() {
|
2015-01-08 11:02:42 +00:00
|
|
|
let x : Box<usize> = box 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
|
|
|
}
|