summaryrefslogtreecommitdiffstats
path: root/src/test/ui/fmt/format-args-capture-macro-hygiene.rs
blob: fdbd93836ef9fde7eea50622464bced7cdcbbefc (plain)
1
2
3
4
fn main() {
    format!(concat!("{foo}"));         //~ ERROR: there is no argument named `foo`
    format!(concat!("{ba", "r} {}"), 1);     //~ ERROR: there is no argument named `bar`
}