rust/src/test/ui/once-move-out-on-heap.rs

19 lines
238 B
Rust

// run-pass
// Testing guarantees provided by once functions.
use std::sync::Arc;
fn foo<F:FnOnce()>(blk: F) {
blk();
}
pub fn main() {
let x = Arc::new(true);
foo(move|| {
assert!(*x);
drop(x);
});
}