rust/src/test/compile-fail/issue-6762.rs

22 lines
399 B
Rust
Raw Normal View History

2013-05-27 14:21:45 -05:00
//xfail-test
// Creating a stack closure which references an owned pointer and then
// transferring ownership of the owned box before invoking the stack
// closure results in a crash.
fn twice(x: ~uint) -> uint {
2013-05-27 14:21:45 -05:00
*x * 2
}
fn invoke(f: || -> uint) {
2013-05-27 14:21:45 -05:00
f();
}
fn main() {
2013-05-27 14:21:45 -05:00
let x : ~uint = ~9;
let sq : || -> uint = || { *x * *x };
2013-05-27 14:21:45 -05:00
twice(x);
invoke(sq);
}