about summary refs log tree commit diff
path: root/src/test/run-pass/sendfn-spawn-with-fn-arg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/sendfn-spawn-with-fn-arg.rs')
-rw-r--r--src/test/run-pass/sendfn-spawn-with-fn-arg.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/sendfn-spawn-with-fn-arg.rs b/src/test/run-pass/sendfn-spawn-with-fn-arg.rs
index 3ed835dc5bd..a6e4716c3b8 100644
--- a/src/test/run-pass/sendfn-spawn-with-fn-arg.rs
+++ b/src/test/run-pass/sendfn-spawn-with-fn-arg.rs
@@ -22,7 +22,7 @@ fn test05() {
         println!("{}", *three + n); // will copy x into the closure
         assert_eq!(*three, 3);
     };
-    Thread::spawn(move|| {
+    Thread::scoped(move|| {
         test05_start(fn_to_send);
     }).join().ok().unwrap();
 }