about summary refs log tree commit diff
path: root/src/test/compile-fail/liveness-and-init.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/liveness-and-init.rs')
-rw-r--r--src/test/compile-fail/liveness-and-init.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/liveness-and-init.rs b/src/test/compile-fail/liveness-and-init.rs
index aea30e3465c..7deafdce363 100644
--- a/src/test/compile-fail/liveness-and-init.rs
+++ b/src/test/compile-fail/liveness-and-init.rs
@@ -2,5 +2,5 @@ fn main() {
     let i: int;
 
     log(debug, false && { i = 5; true });
-    log(debug, i); //! ERROR use of possibly uninitialized variable: `i`
+    log(debug, i); //~ ERROR use of possibly uninitialized variable: `i`
 }