about summary refs log tree commit diff
path: root/src/test/compile-fail/no-capture-arc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/no-capture-arc.rs')
-rw-r--r--src/test/compile-fail/no-capture-arc.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/compile-fail/no-capture-arc.rs b/src/test/compile-fail/no-capture-arc.rs
index 939d7c7a534..7b7b3c414dd 100644
--- a/src/test/compile-fail/no-capture-arc.rs
+++ b/src/test/compile-fail/no-capture-arc.rs
@@ -11,13 +11,13 @@
 // error-pattern: use of moved value
 
 use std::sync::Arc;
-use std::thread::Thread;
+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|| {
+    thread::spawn(move|| {
         assert_eq!((*arc_v)[3], 4);
     });