about summary refs log tree commit diff
path: root/src/test/run-pass/task-spawn-move-and-copy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/task-spawn-move-and-copy.rs')
-rw-r--r--src/test/run-pass/task-spawn-move-and-copy.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/run-pass/task-spawn-move-and-copy.rs b/src/test/run-pass/task-spawn-move-and-copy.rs
index 5c0d0fe9a63..637f564f726 100644
--- a/src/test/run-pass/task-spawn-move-and-copy.rs
+++ b/src/test/run-pass/task-spawn-move-and-copy.rs
@@ -17,13 +17,13 @@ use std::thread::Thread;
 use std::sync::mpsc::channel;
 
 pub fn main() {
-    let (tx, rx) = channel::<uint>();
+    let (tx, rx) = channel::<usize>();
 
-    let x: Box<int> = box 1;
-    let x_in_parent = &(*x) as *const int as uint;
+    let x: Box<isize> = box 1;
+    let x_in_parent = &(*x) as *const isize as usize;
 
     let _t = Thread::spawn(move || {
-        let x_in_child = &(*x) as *const int as uint;
+        let x_in_child = &(*x) as *const isize as usize;
         tx.send(x_in_child).unwrap();
     });