summaryrefslogtreecommitdiffstats
path: root/src/test/ui/once-cant-call-twice-on-heap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/once-cant-call-twice-on-heap.rs')
-rw-r--r--src/test/ui/once-cant-call-twice-on-heap.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/once-cant-call-twice-on-heap.rs b/src/test/ui/once-cant-call-twice-on-heap.rs
deleted file mode 100644
index 3fd8c5cad..000000000
--- a/src/test/ui/once-cant-call-twice-on-heap.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// Testing guarantees provided by once functions.
-// This program would segfault if it were legal.
-
-use std::sync::Arc;
-
-fn foo<F:FnOnce()>(blk: F) {
- blk();
- blk(); //~ ERROR use of moved value
-}
-
-fn main() {
- let x = Arc::new(true);
- foo(move|| {
- assert!(*x);
- drop(x);
- });
-}