Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
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"
));
}