about summary refs log tree commit diff
path: root/src/test/run-pass/move-arg-2-unique.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/move-arg-2-unique.rs')
-rw-r--r--src/test/run-pass/move-arg-2-unique.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/move-arg-2-unique.rs b/src/test/run-pass/move-arg-2-unique.rs
index fd13db560e0..7aec948c8d4 100644
--- a/src/test/run-pass/move-arg-2-unique.rs
+++ b/src/test/run-pass/move-arg-2-unique.rs
@@ -13,7 +13,7 @@
 #![allow(unknown_features)]
 #![feature(box_syntax)]
 
-fn test(foo: Box<Vec<int>> ) { assert!(((*foo)[0] == 10)); }
+fn test(foo: Box<Vec<isize>> ) { assert!(((*foo)[0] == 10)); }
 
 pub fn main() {
     let x = box vec!(10);