2013-06-17 18:25:06 -05:00
|
|
|
// Testing guarantees provided by once functions.
|
|
|
|
// This program would segfault if it were legal.
|
|
|
|
|
2014-06-07 13:13:26 -05:00
|
|
|
use std::sync::Arc;
|
2013-06-17 18:25:06 -05:00
|
|
|
|
2014-11-26 07:12:18 -06:00
|
|
|
fn foo<F:FnOnce()>(blk: F) {
|
2013-06-17 18:25:06 -05:00
|
|
|
blk();
|
|
|
|
blk(); //~ ERROR use of moved value
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2014-01-30 14:04:47 -06:00
|
|
|
let x = Arc::new(true);
|
2014-11-26 07:12:18 -06:00
|
|
|
foo(move|| {
|
2014-03-22 02:55:50 -05:00
|
|
|
assert!(*x);
|
2013-12-03 00:37:26 -06:00
|
|
|
drop(x);
|
2014-01-27 17:29:50 -06:00
|
|
|
});
|
2013-06-17 18:25:06 -05:00
|
|
|
}
|