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