summary refs log tree commit diff
path: root/src/test/run-pass/tuple-struct-construct.rs
diff options
context:
space:
mode:
authorBirunthan Mohanathas <birunthan@mohanathas.com>2013-07-22 19:04:51 +0300
committerDaniel Micay <danielmicay@gmail.com>2013-07-24 09:45:20 -0400
commit206ae5752e05f3d22fdfb3f86d261a24e6dc2286 (patch)
treefd5a1eb2a7cf1a89c985d5d3fe9fbf2c4f40a5cb /src/test/run-pass/tuple-struct-construct.rs
parentd047cf1ec612f766365bde0c9d146b58ef3cc7c7 (diff)
downloadrust-206ae5752e05f3d22fdfb3f86d261a24e6dc2286.tar.gz
rust-206ae5752e05f3d22fdfb3f86d261a24e6dc2286.zip
Change 'print(fmt!(...))' to printf!/printfln! in src/test/
Diffstat (limited to 'src/test/run-pass/tuple-struct-construct.rs')
-rw-r--r--src/test/run-pass/tuple-struct-construct.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/tuple-struct-construct.rs b/src/test/run-pass/tuple-struct-construct.rs
index 20be5df3242..9f1b930f168 100644
--- a/src/test/run-pass/tuple-struct-construct.rs
+++ b/src/test/run-pass/tuple-struct-construct.rs
@@ -12,5 +12,5 @@ struct Foo(int, int);
 
 pub fn main() {
     let x = Foo(1, 2);
-    println(fmt!("%?", x));
+    printfln!(x);
 }