about summary refs log tree commit diff
path: root/src/test/compile-fail/liveness-if-with-else.rs
diff options
context:
space:
mode:
authorPaul Stansifer <paul.stansifer@gmail.com>2012-08-22 17:24:52 -0700
committerPaul Stansifer <paul.stansifer@gmail.com>2012-08-23 11:14:14 -0700
commit29f32b4a7298b0807408658bc8add1de8a06ab12 (patch)
treec989293754f94ce2c22cee3902af0c57d33e6dd0 /src/test/compile-fail/liveness-if-with-else.rs
parent226fd87199fb0184fb39ffc5dff3865cfdc9f362 (diff)
downloadrust-29f32b4a7298b0807408658bc8add1de8a06ab12.tar.gz
rust-29f32b4a7298b0807408658bc8add1de8a06ab12.zip
`m1!{...}` -> `m1!(...)`
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;
     }