about summary refs log tree commit diff
path: root/src/test/compile-fail/alt-join.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/alt-join.rs')
-rw-r--r--src/test/compile-fail/alt-join.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/alt-join.rs b/src/test/compile-fail/alt-join.rs
index bc1357372b0..cd39d90b9bd 100644
--- a/src/test/compile-fail/alt-join.rs
+++ b/src/test/compile-fail/alt-join.rs
@@ -6,6 +6,6 @@ fn my_fail() -> ! { fail; }
 fn main() {
     alt true { false { my_fail(); } true { } }
 
-    log(debug, x); //! ERROR unresolved name: x
+    log(debug, x); //~ ERROR unresolved name: x
     let x: int;
 }