about summary refs log tree commit diff
path: root/src/test/run-pass/str-concat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/str-concat.rs')
-rw-r--r--src/test/run-pass/str-concat.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/str-concat.rs b/src/test/run-pass/str-concat.rs
index 89804a6e562..dc605c50bb0 100644
--- a/src/test/run-pass/str-concat.rs
+++ b/src/test/run-pass/str-concat.rs
@@ -16,6 +16,6 @@ pub fn main() {
     let a: ~str = ~"hello";
     let b: ~str = ~"world";
     let s: ~str = a + b;
-    info!(s.clone());
+    info2!("{}", s.clone());
     assert_eq!(s[9], 'd' as u8);
 }