about summary refs log tree commit diff
path: root/src/test/compile-fail/mut-pattern-mismatched.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/mut-pattern-mismatched.rs')
-rw-r--r--src/test/compile-fail/mut-pattern-mismatched.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/compile-fail/mut-pattern-mismatched.rs b/src/test/compile-fail/mut-pattern-mismatched.rs
index 81985a3d6aa..6a574f07e9d 100644
--- a/src/test/compile-fail/mut-pattern-mismatched.rs
+++ b/src/test/compile-fail/mut-pattern-mismatched.rs
@@ -9,18 +9,18 @@
 // except according to those terms.
 
 fn main() {
-    let foo = &mut 1i;
+    let foo = &mut 1is;
 
     // (separate lines to ensure the spans are accurate)
 
     // SNAP b2085d9 uncomment this after the next snapshot
     // NOTE(stage0) just in case tidy doesn't check snap's in tests
-    // let &_ // ~ ERROR expected `&mut int`, found `&_`
+    // let &_ // ~ ERROR expected `&mut isize`, found `&_`
     //    = foo;
     let &mut _ = foo;
 
-    let bar = &1i;
+    let bar = &1is;
     let &_ = bar;
-    let &mut _ //~ ERROR expected `&int`, found `&mut _`
+    let &mut _ //~ ERROR expected `&isize`, found `&mut _`
          = bar;
 }