2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: format-string-proc-macro.rs
|
2025-09-26 13:59:06 +02:00
|
|
|
//@ ignore-backends: gcc
|
2023-01-05 20:17:30 +01:00
|
|
|
|
|
|
|
|
extern crate format_string_proc_macro;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
format_string_proc_macro::bad_format_args_captures!();
|
|
|
|
|
//~^ ERROR there is no argument named `x`
|
|
|
|
|
}
|