about summary refs log tree commit diff
path: root/src/test/compile-fail/liveness-assign-imm-local-with-init.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/liveness-assign-imm-local-with-init.rs')
-rw-r--r--src/test/compile-fail/liveness-assign-imm-local-with-init.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/compile-fail/liveness-assign-imm-local-with-init.rs b/src/test/compile-fail/liveness-assign-imm-local-with-init.rs
index 2468c91f34b..f35c1c69acd 100644
--- a/src/test/compile-fail/liveness-assign-imm-local-with-init.rs
+++ b/src/test/compile-fail/liveness-assign-imm-local-with-init.rs
@@ -11,8 +11,8 @@
 fn test() {
     let v: isize = 1; //~ NOTE first assignment
     v.clone();
-    v = 2; //~ ERROR re-assignment of immutable variable
-           //~| NOTE re-assignment of immutable
+    v = 2; //~ ERROR cannot assign twice to immutable variable
+           //~| NOTE cannot assign twice to immutable
     v.clone();
 }