#![allow(unused_variables)] #![allow(unused_must_use)] fn main() { format!("{argument}", argument = "test"); format!("{name} {}", 1, name = 2); format!("{a} {c} {b}", a = "a", b ='b', c = 3); }