Sign in
rust
/
rust
/
4645f036d054cbc083194deb8d69c57cd3cd8317
/
.
/
tests
/
ui
/
str
/
debug-print-basic-tuple.rs
blob: 7e2b86f56293dd2783e7ca653d5b491e2883db9b [
file
]
//! regression test for <https://github.com/rust-lang/rust/issues/3109>
//@ run-pass
pub
fn
main
()
{
println
!(
"{:?}"
,
(
"hi there!"
,
"you"
));
}