about summary refs log tree commit diff
path: root/src/test/compile-fail/borrowck-move-error-with-note.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/borrowck-move-error-with-note.rs')
-rw-r--r--src/test/compile-fail/borrowck-move-error-with-note.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/borrowck-move-error-with-note.rs b/src/test/compile-fail/borrowck-move-error-with-note.rs
index 4984987c5ca..2d82c8be519 100644
--- a/src/test/compile-fail/borrowck-move-error-with-note.rs
+++ b/src/test/compile-fail/borrowck-move-error-with-note.rs
@@ -45,7 +45,7 @@ fn move_in_match() {
 
 // from issue-8064
 struct A {
-    a: Box<int>,
+    a: Box<isize>,
 }
 
 fn free<T>(_: T) {}