about summary refs log tree commit diff
path: root/src/test/compile-fail/liveness-if-with-else.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/liveness-if-with-else.rs')
-rw-r--r--src/test/compile-fail/liveness-if-with-else.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/liveness-if-with-else.rs b/src/test/compile-fail/liveness-if-with-else.rs
index edfc22f93e9..29adc91a4ac 100644
--- a/src/test/compile-fail/liveness-if-with-else.rs
+++ b/src/test/compile-fail/liveness-if-with-else.rs
@@ -3,7 +3,7 @@ fn foo(x: int) { log(debug, x); }
 fn main() {
     let x: int;
     if 1 > 2 {
-        debug!{"whoops"};
+        debug!("whoops");
     } else {
         x = 10;
     }