about summary refs log tree commit diff
path: root/tests/ui/unpretty/flattened-format-args.rs
blob: ab065f494dc009064c104322bded574dd4395d1d (plain)
1
2
3
4
5
6
7
8
9
//@ compile-flags: -Zunpretty=hir -Zflatten-format-args=yes
//@ check-pass
//@ edition: 2015

fn main() {
    let x = 1;
    // Should flatten to println!("a 123 b {x} xyz\n"):
    println!("a {} {}", format_args!("{} b {x}", 123), "xyz");
}