2025-07-01 02:09:12 +05:00
|
|
|
//! Test that `FnOnce` closures cannot be called twice.
|
2013-06-17 19:25:06 -04:00
|
|
|
|
2014-06-07 11:13:26 -07:00
|
|
|
use std::sync::Arc;
|
2013-06-17 19:25:06 -04:00
|
|
|
|
2025-07-01 02:09:12 +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);
|
2025-07-01 02:09:12 +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
|
|
|
}
|