fn main() {
    let here = 1;
    format_args!(r"backslash \{here} arg");
    format_args!(r#"hashed \{here} arg"#);
    format_args!("plain {here} arg");
}