summaryrefslogtreecommitdiffstats
path: root/tests/ui/fmt/format-args-capture-issue-106408.rs
blob: 0fd195416ee5b6949e542bc4824d9407258c4773 (plain)
1
2
3
4
5
6
7
8
9
10
// check-pass
// aux-build:format-string-proc-macro.rs

extern crate format_string_proc_macro;

fn main() {
    // While literal macros like `format_args!(concat!())` are not supposed to work with implicit
    // captures, it should work if the whole invocation comes from a macro expansion (#106408).
    format_string_proc_macro::format_args_captures!();
}