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