Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
unpretty
/
flattened-format-args.rs
blob: 772f44cc268ec837cf4b476f777316f37264b183 [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: -Zunpretty=hir -Zflatten-format-args=yes
//@ check-pass
fn
main
()
{
let
x
=
1
;
// Should flatten to println!("a 123 b {x} xyz\n"):
println
!(
"a {} {}"
,
format_args
!(
"{} b {x}"
,
123
),
"xyz"
);
}