about summary refs log tree commit diff
path: root/src/test/run-pass/tuple-struct-matching.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/tuple-struct-matching.rs')
-rw-r--r--src/test/run-pass/tuple-struct-matching.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/tuple-struct-matching.rs b/src/test/run-pass/tuple-struct-matching.rs
index 261b913b1d2..36467189bbd 100644
--- a/src/test/run-pass/tuple-struct-matching.rs
+++ b/src/test/run-pass/tuple-struct-matching.rs
@@ -16,7 +16,7 @@ pub fn main() {
         Foo(a, b) => {
             assert_eq!(a, 1);
             assert_eq!(b, 2);
-            println(fmt!("%d %d", a, b));
+            printfln!("%d %d", a, b);
         }
     }
 }