summaryrefslogtreecommitdiffstats
path: root/src/test/ui/no-capture-arc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/no-capture-arc.rs')
-rw-r--r--src/test/ui/no-capture-arc.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/no-capture-arc.rs b/src/test/ui/no-capture-arc.rs
deleted file mode 100644
index 3f0b07577..000000000
--- a/src/test/ui/no-capture-arc.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// error-pattern: borrow of moved value
-
-use std::sync::Arc;
-use std::thread;
-
-fn main() {
- let v = vec![1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
- let arc_v = Arc::new(v);
-
- thread::spawn(move|| {
- assert_eq!((*arc_v)[3], 4);
- });
-
- assert_eq!((*arc_v)[2], 3);
-
- println!("{:?}", *arc_v);
-}