diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-09-24 22:16:43 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-09-26 17:05:59 -0700 |
| commit | 409182de6d74889134209e7fc98174eb8f267170 (patch) | |
| tree | 8f8c542b198cdb323038aa803ff6bff7433bd3bb /src/test/run-pass/tuple-struct-construct.rs | |
| parent | 09a53381974bcf42c0b081cbfcd9f20f1e5d4f04 (diff) | |
| download | rust-409182de6d74889134209e7fc98174eb8f267170.tar.gz rust-409182de6d74889134209e7fc98174eb8f267170.zip | |
Update the compiler to not use printf/printfln
Diffstat (limited to 'src/test/run-pass/tuple-struct-construct.rs')
| -rw-r--r-- | src/test/run-pass/tuple-struct-construct.rs | 2 |
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 9f1b930f168..3c15bc0bd6b 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); - printfln!(x); + println!("{:?}", x); } |
